Skip to content

Commit

Permalink
Fixes unicode_map declaration example (#19450)
Browse files Browse the repository at this point in the history
If the previous example was used the incorrect codepoints are produced.
Changes the order of arguments the declaration of the unicode_map
  • Loading branch information
BBBNBBB authored Dec 31, 2022
1 parent 590c889 commit 943aae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/feature_unicode.md
Original file line number Diff line number Diff line change
Expand Up @@ -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, // 🐍
Expand Down

0 comments on commit 943aae8

Please sign in to comment.