From 2cbf1335333b78bb350fa15bbe9a20f2d00ea5bf Mon Sep 17 00:00:00 2001 From: Ayush Raj <74952106+Ayush41@users.noreply.github.com> Date: Mon, 7 Jul 2025 20:48:57 +0000 Subject: [PATCH] fixed issue 11090 --- tutorials/scripting/gdscript/gdscript_format_string.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/scripting/gdscript/gdscript_format_string.rst b/tutorials/scripting/gdscript/gdscript_format_string.rst index a8f8791d3..c40f9fdbc 100644 --- a/tutorials/scripting/gdscript/gdscript_format_string.rst +++ b/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 | | | 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 | | | (will be floored). |