Browse Source

Merge pull request #44 from her001/patch-4

Spelling corrections in "Singletons (AutoLoad)"
Rémi Verschelde 9 years ago
parent
commit
1d32623ff8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tutorials/step_by_step/singletons_autoload.rst

+ 3 - 3
tutorials/step_by_step/singletons_autoload.rst

@@ -68,7 +68,7 @@ First download the template from here:
 Two scenes are present, scene_a.scn and scene_b.scn on an otherwise
 empty project. Each are identical and contain a button connected to a
 callback for going to the opposite scene. When the project runs, it
-starts n scene_a.scn. However, this does nothing and pressing the
+starts in scene_a.scn. However, this does nothing and pressing the
 button does not work.
 
 global.gd
@@ -174,8 +174,8 @@ and
     func _on_goto_scene_pressed():
             get_node("/root/global").goto_scene("res://scene_a.scn")
 
-Finally, by running the project it's possible to switch bewtween both
-scenes y pressing the button!
+Finally, by running the project it's possible to switch between both
+scenes by pressing the button!
 
 (To load scenes with a progress bar, check out the next tutorial,
 :ref:`doc_background_loading`)