From 3d441150b13961da951e7c1a1aae812d1df3705b Mon Sep 17 00:00:00 2001 From: 444B <15311579+444B@users.noreply.github.com> Date: Thu, 21 Mar 2024 12:49:25 +0200 Subject: [PATCH] Update gdscript_styleguide.rst - clarified sentence and grammar (#9110) * Update gdscript_styleguide.rst - clarified sentence and grammar - Clarified the statement on "One statement per line" - Removed unclear sentence with incorrect grammar --------- Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- 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 8ee74a822..b2e636412 100644 --- a/tutorials/scripting/gdscript/gdscript_styleguide.rst +++ b/tutorials/scripting/gdscript/gdscript_styleguide.rst @@ -307,8 +307,8 @@ editor. For example, when looking at a differential revision. One statement per line ~~~~~~~~~~~~~~~~~~~~~~ -Never combine multiple statements on a single line. No, C programmers, -not even with a single line conditional statement. +Avoid combining multiple statements on a single line, including conditional +statements, to adhere to the GDScript style guidelines for readability. **Good**: