فهرست منبع

Fix void typed function code sample in GDScript basics

Hugo Locurcio 4 سال پیش
والد
کامیت
31033b212b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tutorials/scripting/gdscript/gdscript_basics.rst

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

@@ -893,7 +893,7 @@ return early with the ``return`` keyword, but they can't return any value.
 
 ::
 
-    void_function() -> void:
+    func void_function() -> void:
         return # Can't return a value.
 
 .. note:: Non-void functions must **always** return a value, so if your code has