Browse Source

Merge pull request #1254 from joshuadavidthomas/master

Update gdscript_advanced.rst
Max Hilbrunner 7 years ago
parent
commit
dffd55fa1a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/scripting/gdscript/gdscript_advanced.rst

+ 1 - 1
getting_started/scripting/gdscript/gdscript_advanced.rst

@@ -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