aboutsummaryrefslogtreecommitdiffstats
path: root/doc/code/Apps.md
diff options
context:
space:
mode:
authorJF <JF002@users.noreply.github.com>2023-12-23 20:37:20 +0100
committerJF <JF002@users.noreply.github.com>2023-12-23 21:29:13 +0100
commit06171dad3836e0d4199100d71b82f9f89dad40be (patch)
treee08b72f38a275d1228abc49dddb577267eef4c11 /doc/code/Apps.md
parent7794378e967e5492c9d3f5f5d77dfa77ba974edd (diff)
Fix trailing space in doc/code/Apps.md
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Diffstat (limited to 'doc/code/Apps.md')
-rw-r--r--doc/code/Apps.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/code/Apps.md b/doc/code/Apps.md
index 16cb3992..3be47ad7 100644
--- a/doc/code/Apps.md
+++ b/doc/code/Apps.md
@@ -59,7 +59,7 @@ and then the function `create` is called to create an instance of the app.
The list of user applications is generated at build time by the `consteval` function `CreateAppDescriptions()`
in `UserApps.h`. This method takes the list of applications that must be built into the firmware image.
-This list of applications is defined as a list `Apps` enum values named `UserAppTypes` in `Apps.h`.
+This list of applications is defined as a list `Apps` enum values named `UserAppTypes` in `Apps.h`.
For each application listed in `UserAppTypes`, an entry of type `AppDescription` is added to the array `userApps`.
This entry is created by using the information provided by a template `AppTraits`
that is customized for every user application.