InfiniTime.git

commit 762d52e114e02ef490e7b30a28f99d8b6b880404

Author: TailyFair <kalzanauskas@gmail.com>

Fix Apps documentation DisplayApp method name

 doc/code/Apps.md | 2 +-


diff --git a/doc/code/Apps.md b/doc/code/Apps.md
index ad0f040373435cd7a5b4dd30906d5dfd463fcd1a..cb7cd518034dbf10aa776f3cf55b0b63c0ce92af 100644
--- a/doc/code/Apps.md
+++ b/doc/code/Apps.md
@@ -95,7 +95,7 @@ in the compilation by adding it to [CMakeLists.txt](/CMakeLists.txt).
 The next step to making it launchable is to give your app an id.
 To do this, add an entry in the enum class `Pinetime::Applications::Apps` ([displayapp/Apps.h](/src/displayapp/Apps.h)).
 Name this entry after your app. Add `#include "displayapp/screens/MyApp.h"` to the file [displayapp/DisplayApp.cpp](/src/displayapp/DisplayApp.cpp).
-Now, go to the function `DisplayApp::LoadApp` and add another case to the switch statement.
+Now, go to the function `DisplayApp::LoadScreen` and add another case to the switch statement.
 The case will be the id you gave your app earlier.
 If your app needs any additional arguments, this is the place to pass them.