فهرست منبع

Update string literal example

Both examples were using double quotes, this change the second example to single quotes
Thiago Lages de Alencar 2 سال پیش
والد
کامیت
f2d0428c0c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tutorials/scripting/gdscript/gdscript_basics.rst

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

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