Browse Source

Fix two code lines wrapped in a single one

Nathan Lovato 4 years ago
parent
commit
a74cf9ac21
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 2 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -82,7 +82,8 @@ here's a simple example of how GDScript looks.
             param2 -= 1
             param2 -= 1
 
 
         match param3:
         match param3:
-            3: print("param3 is 3!")
+            3:
+                print("param3 is 3!")
             _:
             _:
                 print("param3 is not 3!")
                 print("param3 is not 3!")