Skip to content

Commit 32e937f

Browse files
authored
Merge pull request godotengine#8603 from eisenbar/patch-1
Minor text change from i to node
2 parents cf10658 + 0378ba1 commit 32e937f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/io/saving_games.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ to save them and then tell them all to save with this script:
4343
.. code-tab:: gdscript GDScript
4444

4545
var save_nodes = get_tree().get_nodes_in_group("Persist")
46-
for i in save_nodes:
46+
for node in save_nodes:
4747
# Now, we can call our save function on each node.
4848

4949
.. code-tab:: csharp

0 commit comments

Comments
 (0)