Minor text change from i to node

Keeps document consistent throughout
This commit is contained in:
Ryan Eisenbarth
2023-12-11 09:13:21 -07:00
committed by Max Hilbrunner
parent 4b45519456
commit b03b4c5d1f

View File

@@ -38,7 +38,7 @@ to save them and then tell them all to save with this script:
.. code-tab:: gdscript GDScript
var save_nodes = get_tree().get_nodes_in_group("Persist")
for i in save_nodes:
for node in save_nodes:
# Now, we can call our save function on each node.
.. code-tab:: csharp