Explorar el Código

Fix two code lines wrapped in a single one

Nathan Lovato hace 5 años
padre
commit
a74cf9ac21
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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!")