From 8fa3cc37cd2260d36bcd4dbed7af989b57c8179f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 5 Dec 2018 01:51:16 +0100 Subject: [PATCH] Fix code-block indentation Fixes #1971. --- getting_started/scripting/gdscript/gdscript_basics.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index dfaccb40a..5fee9260d 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/getting_started/scripting/gdscript/gdscript_basics.rst @@ -988,10 +988,11 @@ There are a few things to keep in mind here: to the ``State.gd`` base class even if it does nothing. Which brings us to the fact that you can pass literals in the base constructor as well, not just variables. Eg.: - :: - # Idle.gd +:: - func _init().(5): + # Idle.gd + + func _init().(5): pass Inner classes