Browse Source

Merge pull request #2370 from kmcphillips/master

Change case sensitive string to "waiting"
Max Hilbrunner 6 years ago
parent
commit
193ee9cbf7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 1 - 1
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::
 assign to it::
 
 
     var d = {} # Create an empty Dictionary.
     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[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.
     d["Godot"] = 3.01 # Add String "Godot" as a key and assign the value 3.01 to it.