Browse Source

Merge pull request #1407 from Omicron666/patch-1

Missing bracket
Chris Bradfield 7 years ago
parent
commit
134a01ebbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/scripting/gdscript/gdscript_format_string.rst

+ 1 - 1
getting_started/scripting/gdscript/gdscript_format_string.rst

@@ -247,7 +247,7 @@ The following are some examples of how to use the various invocations of the
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
 | Dictionary | mix       | "Hi, {0} v{version}!".format({"0":"Godette", "version":"3.0"})           | Hi, Godette v3.0! |
 | Dictionary | mix       | "Hi, {0} v{version}!".format({"0":"Godette", "version":"3.0"})           | Hi, Godette v3.0! |
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
-| Array      | key       | "Hi, {name} v{version}!".format([["version":"3.0"], ["name":"Godette"])  | Hi, Godette v3.0! |
+| Array      | key       | "Hi, {name} v{version}!".format([["version":"3.0"], ["name":"Godette"]]) | Hi, Godette v3.0! |
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
 | Array      | index     | "Hi, {0} v{1}!".format(["Godette","3.0"])                                | Hi, Godette v3.0! |
 | Array      | index     | "Hi, {0} v{1}!".format(["Godette","3.0"])                                | Hi, Godette v3.0! |
 +------------+-----------+--------------------------------------------------------------------------+-------------------+
 +------------+-----------+--------------------------------------------------------------------------+-------------------+