aboutsummaryrefslogtreecommitdiff
path: root/doc/classes/@GDScript.xml
diff options
context:
space:
mode:
authorRémi Verschelde2017-11-15 18:45:34 +0100
committerRémi Verschelde2017-11-15 20:41:16 +0100
commite7701bb2de30c554f52dc9d3f0110b4001ae18ad (patch)
tree34ed972df2edbb14b5fcf70e59315eff459bc310 /doc/classes/@GDScript.xml
parent967bfb0c4a1db5adb10d40f66bb8542ec25e1694 (diff)
downloadgodot-e7701bb2de30c554f52dc9d3f0110b4001ae18ad.tar.gz
godot-e7701bb2de30c554f52dc9d3f0110b4001ae18ad.tar.zst
godot-e7701bb2de30c554f52dc9d3f0110b4001ae18ad.zip
doc: Rename "@Global Scope" to "@GlobalScope"
Spaces in filenames are evil.
Diffstat (limited to 'doc/classes/@GDScript.xml')
-rw-r--r--doc/classes/@GDScript.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/@GDScript.xml b/doc/classes/@GDScript.xml
index fa5c89ccf..3f2d0c71e 100644
--- a/doc/classes/@GDScript.xml
+++ b/doc/classes/@GDScript.xml
@@ -196,7 +196,7 @@
<argument index="1" name="type" type="int">
</argument>
<description>
- Converts from a type to another in the best way possible. The [code]type[/code] parameter uses the enum TYPE_* in [@Global Scope].
+ Converts from a type to another in the best way possible. The [code]type[/code] parameter uses the enum TYPE_* in [@GlobalScope].
[codeblock]
a = Vector2(1, 0)
# prints 1
@@ -984,7 +984,7 @@
<argument index="0" name="what" type="Variant">
</argument>
<description>
- Returns the internal type of the given Variant object, using the TYPE_* enum in [@Global Scope].
+ Returns the internal type of the given Variant object, using the TYPE_* enum in [@GlobalScope].
[codeblock]
p = parse_json('["a", "b", "c"]')
if typeof(p) == TYPE_ARRAY: