Browse Source

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
pull/19454/head
BBBNBBB 1 year ago
committed by GitHub
parent
commit
943aae85d5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/feature_unicode.md

+ 1
- 1
docs/feature_unicode.md View File

@ -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, // 🐍


Loading…
Cancel
Save