summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Curtin <robertecurtin@gmail.com>2020-10-12 08:45:41 -0400
committerRobert Curtin <robertecurtin@gmail.com>2020-10-12 08:45:41 -0400
commit2d5ddb88a74bf9a58788054631179c2aac79f902 (patch)
tree8204034559474a0339f7c05de21655f42a47d52c
parentbb72712d376685143b57d321c6f967cbbca4c28e (diff)
Noticed this typo when booting my PineTime
-rw-r--r--src/displayapp/screens/SystemInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp
index 8a3b8dbb..3e00f7de 100644
--- a/src/displayapp/screens/SystemInfo.cpp
+++ b/src/displayapp/screens/SystemInfo.cpp
@@ -111,6 +111,6 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen2() {
}
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));
}