Fix void typed function code sample in GDScript basics

This commit is contained in:
Hugo Locurcio
2021-09-25 19:49:24 +02:00
parent 1b80cf29c1
commit 31033b212b

View File

@@ -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