From b928c651e7fd2a13811bef5e711667b047f4844c Mon Sep 17 00:00:00 2001 From: Nathan Lovato Date: Wed, 18 Nov 2020 08:10:24 -0600 Subject: [PATCH] Add note about line skips in the style guide --- tutorials/scripting/gdscript/gdscript_styleguide.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tutorials/scripting/gdscript/gdscript_styleguide.rst b/tutorials/scripting/gdscript/gdscript_styleguide.rst index b03a75a1a..4e02b238a 100644 --- a/tutorials/scripting/gdscript/gdscript_styleguide.rst +++ b/tutorials/scripting/gdscript/gdscript_styleguide.rst @@ -254,6 +254,9 @@ Surround functions and class definitions with two blank lines: Use one blank line inside functions to separate logical sections. +.. note:: We use a single line between classes and function definitions in the class reference and + in short code snippets in this documentation. + Line length ~~~~~~~~~~~