Browse Source

Fix typo in Background Loading example

Replace `progress` with `process` in a couple of places where it was mistyped.
Brad Buchanan 7 years ago
parent
commit
96f982f4ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      learning/features/misc/background_loading.rst

+ 1 - 1
learning/features/misc/background_loading.rst

@@ -105,7 +105,7 @@ with the main scene of the game:
 
 The function ``goto_scene`` is called from the game when the scene
 needs to be switched. It requests an interactive loader, and calls
-``set_progress(true)`` to start polling the loader in the ``_progress``
+``set_process(true)`` to start polling the loader in the ``_process``
 callback. It also starts a "loading" animation, which can show a
 progress bar or loading screen, etc.