Typo in example code

This commit is contained in:
adumelie 2024-03-14 16:41:17 +01:00 committed by JF
parent ef38472278
commit 14c6270903

View File

@ -143,7 +143,7 @@ namespace Pinetime {
struct AppTraits<Apps::MyApp> {
static constexpr Apps app = Apps::MyApp;
static constexpr const char* icon = Screens::Symbols::myApp;
static Screens::Screen* Create(AppController& controllers) {
static Screens::Screen* Create(AppControllers& controllers) {
return new Screens::MyApp();
}
};