Selaa lähdekoodia

fixed issue 11090

Ayush Raj 2 viikkoa sitten
vanhempi
commit
2cbf133533
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      tutorials/scripting/gdscript/gdscript_format_string.rst

+ 2 - 2
tutorials/scripting/gdscript/gdscript_format_string.rst

@@ -86,8 +86,8 @@ specifier. Apart from ``s``, these require certain types of parameters.
 | ``s`` | **Simple** conversion to String by the same method as implicit      |
 | ``s`` | **Simple** conversion to String by the same method as implicit      |
 |       | String conversion.                                                  |
 |       | String conversion.                                                  |
 +-------+---------------------------------------------------------------------+
 +-------+---------------------------------------------------------------------+
-| ``c`` | A single **Unicode character**. Expects an unsigned 8-bit integer   |
-|       | (0-255) for a code point or a single-character string.              |
+| ``c`` | A single **Unicode character**. Accepts a Unicode code point        |
+|       | (integer) or a single-character string. Supports values beyond 255. |
 +-------+---------------------------------------------------------------------+
 +-------+---------------------------------------------------------------------+
 | ``d`` | A **decimal integer**. Expects an integer or a real number          |
 | ``d`` | A **decimal integer**. Expects an integer or a real number          |
 |       | (will be floored).                                                  |
 |       | (will be floored).                                                  |