From cba2d9684fd3b38936a6744961043a6269f7637a Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 13 Oct 2020 21:17:34 -0400 Subject: [PATCH] s/Brailler/Braille/g --- src/lib/blit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/blit.c b/src/lib/blit.c index 40d2e0e67..eca34c1bf 100644 --- a/src/lib/blit.c +++ b/src/lib/blit.c @@ -553,7 +553,7 @@ braille_blit(ncplane* nc, int placey, int placex, int linesize, if(blends){ cell_set_fg_rgb8(c, r / blends, g / blends, b / blends); } - // UTF-8 encodings of the Brailler Patterns are always 0xe2 0xaX 0xCC, + // UTF-8 encodings of the Braille Patterns are always 0xe2 0xaX 0xCC, // where 0 <= X <= 3 and 0x80 <= CC <= 0xbf (4 groups of 64). char egc[4] = { 0xe2, 0xa0, 0x80, 0x00 }; egc[2] += egcidx % 64;