Change case sensitive string to "waiting"

This commit is contained in:
Kevin McPhillips
2019-04-13 21:42:18 -04:00
parent 70155b45d7
commit f3c2eda0a3

View File

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