浏览代码

Fix void typed function code sample in GDScript basics (#5281)

Andrew Kim 3 年之前
父节点
当前提交
07bdedd7af
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      getting_started/scripting/gdscript/gdscript_basics.rst

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

@@ -755,7 +755,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
         return # Can't return a value
 
 
 .. note:: Non-void functions must **always** return a value, so if your code has
 .. note:: Non-void functions must **always** return a value, so if your code has