Merge pull request #3528 from mtttz/master

Replace outdated identifier in example code
This commit is contained in:
Max Hilbrunner
2020-05-13 00:55:19 +02:00
committed by GitHub
@@ -1507,7 +1507,7 @@ Remember to save the new function state, when using multiple ``yield``\s::
func _ready():
var co = co_func();
while co is GDScriptFunction && co.is_valid():
while co is GDScriptFunctionState && co.is_valid():
co = co.resume();