From f3c2eda0a32a64727a2ca6e739bbb03c498ee116 Mon Sep 17 00:00:00 2001 From: Kevin McPhillips Date: Sat, 13 Apr 2019 21:42:18 -0400 Subject: [PATCH] Change case sensitive string to "waiting" --- getting_started/scripting/gdscript/gdscript_basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index d1f4816dc..64bb1ac17 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/getting_started/scripting/gdscript/gdscript_basics.rst @@ -531,7 +531,7 @@ To add a key to an existing dictionary, access it like an existing key and assign to it:: var d = {} # Create an empty Dictionary. - d.waiting = 14 # Add String "Waiting" as a key and assign the value 14 to it. + d.waiting = 14 # Add String "waiting" as a key and assign the value 14 to it. d[4] = "hello" # Add integer 4 as a key and assign the String "hello" as its value. d["Godot"] = 3.01 # Add String "Godot" as a key and assign the value 3.01 to it.