소스 검색

Merge pull request #6534 from thiagola92/single_quote

Update string literal example
Matthew 2 년 전
부모
커밋
eb25278373
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 1 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -300,7 +300,7 @@ Literals
 +--------------------------+----------------------------------------+
 | ``3.14``, ``58.1e-10``   | Floating-point number (real)           |
 +--------------------------+----------------------------------------+
-| ``"Hello"``, ``"Hi"``    | Strings                                |
+| ``"Hello"``, ``'Hi'``    | Strings                                |
 +--------------------------+----------------------------------------+
 | ``"""Hello"""``          | Multiline string                       |
 +--------------------------+----------------------------------------+