diff --git a/tutorials/scripting/gdscript/gdscript_styleguide.rst b/tutorials/scripting/gdscript/gdscript_styleguide.rst index 6835f13cd..9be95e050 100644 --- a/tutorials/scripting/gdscript/gdscript_styleguide.rst +++ b/tutorials/scripting/gdscript/gdscript_styleguide.rst @@ -414,6 +414,7 @@ Prefer the plain English versions of boolean operators, as they are the most acc - Use ``and`` instead of ``&&``. - Use ``or`` instead of ``||``. +- Use ``not`` instead of ``!``. You may also use parentheses around boolean operators to clear any ambiguity. This can make long expressions easier to read.