瀏覽代碼

Add missing closing quotation marks in GDScript format strings (#5583)

Victor Karp 3 年之前
父節點
當前提交
7d3cd55ea2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tutorials/scripting/gdscript/gdscript_format_string.rst

+ 1 - 1
tutorials/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.
 by parameters handed to the format string.
 
 
 As an example, with ``%s`` as a placeholder, the format string ``"Hello %s, how
 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
 the placeholder is in the middle of the string; modifying it without format
 strings could be cumbersome.
 strings could be cumbersome.