Update gdscript_advanced.rst

Typo
This commit is contained in:
Josh
2018-03-23 09:29:23 -05:00
committed by GitHub
parent 31410d215a
commit ccc7a3b400

View File

@@ -107,7 +107,7 @@ Pointers & referencing:
In static languages such as C or C++ (and to some extent Java and C#),
there is a distinction between a variable and a pointer/reference to a
variable. The later allows the object to be modified by other functions
variable. The latter allows the object to be modified by other functions
by passing a reference to the original one.
In C# or Java, everything not a built-in type (int, float, sometimes