Skip to content

Commit

Permalink
Fixes unicode_map declaration example (qmk#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 and jasonisgraham committed Jan 2, 2023
1 parent 52a82a2 commit c09894e
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 c09894e

Please sign in to comment.