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**: