فهرست منبع

Fix two code lines wrapped in a single one

Nathan Lovato 4 سال پیش
والد
کامیت
a74cf9ac21
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  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!")