Procházet zdrojové kódy

Minor text change from i to node

Keeps document consistent throughout
Ryan Eisenbarth před 1 rokem
rodič
revize
b03b4c5d1f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      tutorials/io/saving_games.rst

+ 1 - 1
tutorials/io/saving_games.rst

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