From 264df54c2abea89dccbfe44237fa719e310a5d1d Mon Sep 17 00:00:00 2001 From: pcamp Date: Mon, 13 Mar 2023 01:05:08 -0500 Subject: [PATCH] Fix typo in gdscript_basics "change" -> "changes" --- tutorials/scripting/gdscript/gdscript_basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index 1e2b3bd34..345823d48 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/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``