From 175aea267b8c5bc154b788ebf2b43413334ddf91 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Silva Dias Date: Fri, 9 Mar 2018 11:17:45 -0300 Subject: [PATCH] Fixed small mistake on the "GDScript format strings" page. --- getting_started/scripting/gdscript/gdscript_format_string.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/scripting/gdscript/gdscript_format_string.rst b/getting_started/scripting/gdscript/gdscript_format_string.rst index e24af2e46..69f79080a 100644 --- a/getting_started/scripting/gdscript/gdscript_format_string.rst +++ b/getting_started/scripting/gdscript/gdscript_format_string.rst @@ -254,7 +254,7 @@ Combining both the ``String.format`` method and the ``%`` operator could be usef ``String.format`` does not have a way to manipulate the representation of numbers. +-----------------------------------------------------------------------+-------------------+ -| **Example ** | **Result** | +| **Example** | **Result** | +-----------------------------------------------------------------------+-------------------+ | "Hi, {0} v{version}".format({0:"Godette", "version":"%0.2f" % 3.114}) | Hi, Godette v3.11 | +-----------------------------------------------------------------------+-------------------+