From b5965dddcde87fd3b28715da64770c77cd68e2c2 Mon Sep 17 00:00:00 2001 From: Alexander Morland Date: Mon, 24 Nov 2025 16:31:37 +0100 Subject: [PATCH] fixed indentation causing render issue on code sample bad indentation causing render error if this code sample --- tutorials/scripting/gdscript/gdscript_basics.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index b3c0e73076b..2524a14822d 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/tutorials/scripting/gdscript/gdscript_basics.rst @@ -2394,12 +2394,12 @@ There are a few things to keep in mind here: to the ``state.gd`` base class, even if it does nothing. This brings us to the fact that you can pass expressions to the base constructor as well, not just variables, e.g.: - :: +:: - # idle.gd + # idle.gd - func _init(): - super(5) + func _init(): + super(5) Static constructor ~~~~~~~~~~~~~~~~~~