From 943aae85d5edfbcc7277d5ca5fc2867c4132a5e6 Mon Sep 17 00:00:00 2001 From: BBBNBBB <110104157+BBBNBBB@users.noreply.github.com> Date: Sat, 31 Dec 2022 21:23:17 +0000 Subject: 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 --- docs/feature_unicode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/feature_unicode.md') 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, // 🐍 -- cgit v1.2.3