summaryrefslogtreecommitdiff
path: root/doc/code
diff options
context:
space:
mode:
authorKieran Cawthray <kieranc@gmail.com>2021-10-23 18:00:47 +0200
committerKieran Cawthray <kieranc@gmail.com>2021-10-23 18:00:47 +0200
commitda97a94a0fc89a646f9a7ab9d1b9937164227d2f (patch)
treee2b0b23ab43ecbc22ee58966d66c8399a385e01b /doc/code
parent411c10ec317464a79c353dc5c18b805cf4bdf7d0 (diff)
parent9538eb97166410ebc362addfb76ec54895491cd7 (diff)
Merge remote-tracking branch 'upstream/develop' into pts-settings
Diffstat (limited to 'doc/code')
-rw-r--r--doc/code/Apps.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/code/Apps.md b/doc/code/Apps.md
index b3bab042..7c2d7a05 100644
--- a/doc/code/Apps.md
+++ b/doc/code/Apps.md
@@ -51,14 +51,14 @@ MyApp.h:
#include "displayapp/screens/Screen.h"
#include <lvgl/lvgl.h>
-namespace PineTime {
+namespace Pinetime {
namespace Applications {
namespace Screens {
class MyApp : public Screen {
public:
MyApp(DisplayApp* app);
~MyApp() override;
- }
+ };
}
}
}