From 571a85decf73dc604651780aa35ed3bfb9e174eb Mon Sep 17 00:00:00 2001 From: Lexyth Date: Sun, 23 Mar 2025 15:21:15 +0100 Subject: [PATCH] Update line length Reduced the line length to make it more readable. Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- tutorials/scripting/gdscript/gdscript_styleguide.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tutorials/scripting/gdscript/gdscript_styleguide.rst b/tutorials/scripting/gdscript/gdscript_styleguide.rst index afa0a3375..9e0c09dbe 100644 --- a/tutorials/scripting/gdscript/gdscript_styleguide.rst +++ b/tutorials/scripting/gdscript/gdscript_styleguide.rst @@ -1053,7 +1053,9 @@ that type will be used to infer the type of the var. .. note:: - This option is considered more :ref:`type-safe` than type hints, but also less null-safe as it silently casts the variable to ``null`` in case of a type mismatch at runtime, without an error/warning. + This option is considered more :ref:`type-safe` than type hints, + but also less null-safe as it silently casts the variable to ``null`` in case of a type mismatch at runtime, + without an error/warning. **Bad**: