From 72b304711adb50f72846c146543671c57b4b2c0f Mon Sep 17 00:00:00 2001 From: Victor Karp <35151158+HerrSersch@users.noreply.github.com> Date: Sat, 5 Feb 2022 21:23:04 +0100 Subject: [PATCH] Add missing closing quotation marks in GDScript format strings (#5583) --- 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 34ecafb1b..e9e48bb99 100644 --- a/getting_started/scripting/gdscript/gdscript_format_string.rst +++ b/getting_started/scripting/gdscript/gdscript_format_string.rst @@ -11,7 +11,7 @@ placeholder character-sequences. These placeholders can then easily be replaced by parameters handed to the format string. As an example, with ``%s`` as a placeholder, the format string ``"Hello %s, how -are you?`` can easily be changed to ``"Hello World, how are you?"``. Notice +are you?"`` can easily be changed to ``"Hello World, how are you?"``. Notice the placeholder is in the middle of the string; modifying it without format strings could be cumbersome.