diff options
author | BBBNBBB <110104157+BBBNBBB@users.noreply.github.com> | 2022-12-31 21:23:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-31 21:23:17 +0000 |
commit | 943aae85d5edfbcc7277d5ca5fc2867c4132a5e6 (patch) | |
tree | 7dba9a9d882e4a6de4d29efc079cd45a8f25acf8 /docs | |
parent | 590c889537949f2926e9a6428e8b91deec94076c (diff) |
Fixes unicode_map declaration example (#19450)
If the previous example was used the incorrect codepoints are produced.
Changes the order of arguments the declaration of the unicode_map
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_unicode.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_unicode.md b/docs/feature_unicode.md index a93e9ad2ba..f6ef70d57d 100644 --- a/docs/feature_unicode.md +++ b/docs/feature_unicode.md @@ -51,7 +51,7 @@ enum unicode_names { SNEK }; -const uint32_t PROGMEM unicode_map[] = { +const uint32_t unicode_map[] PROGMEM = { [BANG] = 0x203D, // ‽ [IRONY] = 0x2E2E, // ⸮ [SNEK] = 0x1F40D, // 🐍 |