From 0378ba1b56be68ba67fe85ac007f8311d6940260 Mon Sep 17 00:00:00 2001 From: Ryan Eisenbarth Date: Mon, 11 Dec 2023 09:13:21 -0700 Subject: [PATCH] Minor text change from i to node Keeps document consistent throughout --- tutorials/io/saving_games.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/io/saving_games.rst b/tutorials/io/saving_games.rst index f0d6b0e52..0c7ce56f2 100644 --- a/tutorials/io/saving_games.rst +++ b/tutorials/io/saving_games.rst @@ -43,7 +43,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