Browse Source

Merge pull request #8265 from Piralein/autoload

fix file casing in singletons_autoload tutorial
Max Hilbrunner 1 year ago
parent
commit
49cbe2fce7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tutorials/scripting/singletons_autoload.rst

+ 2 - 2
tutorials/scripting/singletons_autoload.rst

@@ -250,7 +250,7 @@ Finally, we need to fill the empty callback functions in the two scenes:
 .. tabs::
  .. code-tab:: gdscript GDScript
 
-    # Add to 'Scene1.gd'.
+    # Add to 'scene_1.gd'.
 
     func _on_button_pressed():
         Global.goto_scene("res://scene_2.tscn")
@@ -270,7 +270,7 @@ and
 .. tabs::
  .. code-tab:: gdscript GDScript
 
-    # Add to 'Scene2.gd'.
+    # Add to 'scene_2.gd'.
 
     func _on_button_pressed():
         Global.goto_scene("res://scene_1.tscn")