From c925bcd76f64097cfc0595e6eb65e045800e804c Mon Sep 17 00:00:00 2001 From: oujionghong Date: Fri, 17 Nov 2023 10:16:32 +0800 Subject: [PATCH] Fixing guide example on 2 indent levels for continuation lines The original example seems to be using 3 tabs for indentation, but the description said 2 should be used. --- tutorials/scripting/gdscript/gdscript_styleguide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/scripting/gdscript/gdscript_styleguide.rst b/tutorials/scripting/gdscript/gdscript_styleguide.rst index 441904bb6..b45b2000b 100644 --- a/tutorials/scripting/gdscript/gdscript_styleguide.rst +++ b/tutorials/scripting/gdscript/gdscript_styleguide.rst @@ -153,8 +153,8 @@ regular code blocks. :: effect.interpolate_property(sprite, "transform/scale", - sprite.get_scale(), Vector2(2.0, 2.0), 0.3, - Tween.TRANS_QUAD, Tween.EASE_OUT) + sprite.get_scale(), Vector2(2.0, 2.0), 0.3, + Tween.TRANS_QUAD, Tween.EASE_OUT) **Bad**: