Quellcode durchsuchen

Fix two code lines wrapped in a single one

Nathan Lovato vor 5 Jahren
Ursprung
Commit
a74cf9ac21
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  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
 
         match param3:
-            3: print("param3 is 3!")
+            3:
+                print("param3 is 3!")
             _:
                 print("param3 is not 3!")