summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gd_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-11-15 18:45:34 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-11-15 20:41:16 +0100
commite7701bb2de30c554f52dc9d3f0110b4001ae18ad (patch)
tree34ed972df2edbb14b5fcf70e59315eff459bc310 /modules/gdscript/gd_editor.cpp
parent967bfb0c4a1db5adb10d40f66bb8542ec25e1694 (diff)
downloadredot-engine-e7701bb2de30c554f52dc9d3f0110b4001ae18ad.tar.gz
doc: Rename "@Global Scope" to "@GlobalScope"
Spaces in filenames are evil.
Diffstat (limited to 'modules/gdscript/gd_editor.cpp')
-rw-r--r--modules/gdscript/gd_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp
index 655e785174..9b7201f5f7 100644
--- a/modules/gdscript/gd_editor.cpp
+++ b/modules/gdscript/gd_editor.cpp
@@ -2798,7 +2798,7 @@ Error GDScriptLanguage::lookup_code(const String &p_code, const String &p_symbol
}
} else {
r_result.type = ScriptLanguage::LookupResult::RESULT_CLASS_CONSTANT;
- r_result.class_name = "@Global Scope";
+ r_result.class_name = "@GlobalScope";
r_result.class_member = p_symbol;
return OK;
}