Merge pull request #93 from robertecurtin/master

Fix typo in SystemInfo app.
main
JF002 2020-10-18 17:50:20 +07:00 committed by GitHub
commit 3c5fd5ca8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -111,6 +111,6 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen2() {
} }
std::unique_ptr<Screen> SystemInfo::CreateScreen3() { std::unique_ptr<Screen> SystemInfo::CreateScreen3() {
strncpy(t3, "Hello from\nthe developper!", 27); strncpy(t3, "Hello from\nthe developer!", 27);
return std::unique_ptr<Screen>(new Screens::Label(app, t3)); return std::unique_ptr<Screen>(new Screens::Label(app, t3));
} }