Skip to content

Commit 0378ba1

Browse files
author
Ryan Eisenbarth
authored
Minor text change from i to node
Keeps document consistent throughout
1 parent 8209021 commit 0378ba1

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)