Browse Source

Merge pull request #6973 from pcamp/patch-7

Fix typo in gdscript_basics
Max Hilbrunner 2 years ago
parent
commit
0ed1625175
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 1 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -1539,7 +1539,7 @@ Properties (setters and getters)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Sometimes, you want a class' member variable to do more than just hold data and actually perform
-some validation or computation whenever its value change. It may also be desired to
+some validation or computation whenever its value changes. It may also be desired to
 encapsulate its access in some way.
 
 For this, GDScript provides a special syntax to define properties using the ``set`` and ``get``