Missing bracket

This commit is contained in:
Omicron
2018-04-28 23:04:18 +02:00
committed by GitHub
parent d98bb0d5c0
commit 7cc76159f8

View File

@@ -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! |
+------------+-----------+--------------------------------------------------------------------------+-------------------+
| 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! |
+------------+-----------+--------------------------------------------------------------------------+-------------------+