diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-11-22 08:58:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 08:58:50 +0100 |
commit | 2ea0d79073849e3ecd27d382588955c4fc886c3d (patch) | |
tree | 953952181ba1b46ccafce646774b69dfb06d759a /modules/gdscript/language_server/gdscript_workspace.cpp | |
parent | 28613ab8c9f48c5d0cb5c1f23df6d1b662872f51 (diff) | |
parent | c41c24562d4c85c71368d9381fc3046e4d6b7a69 (diff) | |
download | redot-engine-2ea0d79073849e3ecd27d382588955c4fc886c3d.tar.gz |
Merge pull request #33810 from akien-mga/codespell
Fix typos with codespell
Diffstat (limited to 'modules/gdscript/language_server/gdscript_workspace.cpp')
-rw-r--r-- | modules/gdscript/language_server/gdscript_workspace.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdscript/language_server/gdscript_workspace.cpp b/modules/gdscript/language_server/gdscript_workspace.cpp index f2c0e7035b..f9a974bad3 100644 --- a/modules/gdscript/language_server/gdscript_workspace.cpp +++ b/modules/gdscript/language_server/gdscript_workspace.cpp @@ -102,9 +102,9 @@ const lsp::DocumentSymbol *GDScriptWorkspace::get_script_symbol(const String &p_ } void GDScriptWorkspace::reload_all_workspace_scripts() { - List<String> pathes; - list_script_files("res://", pathes); - for (List<String>::Element *E = pathes.front(); E; E = E->next()) { + List<String> paths; + list_script_files("res://", paths); + for (List<String>::Element *E = paths.front(); E; E = E->next()) { const String &path = E->get(); Error err; String content = FileAccess::get_file_as_string(path, &err); |