summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/unicode.cpp
diff options
context:
space:
mode:
author Zoë Blade <zoe@bytenoise.co.uk>2019-10-21 09:31:13 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2019-10-21 19:40:49 +1100
commit5854f09b4dad2516691571226a99efa7ff90e465 (patch)
treed9d2061e10ba3ab392d5caaaf882b1acf3fa182e /src/lib/util/unicode.cpp
parent62925267225a4bf5d743310dc83c8983309864a8 (diff)
Fix spelling, tidy whitespace
Diffstat (limited to 'src/lib/util/unicode.cpp')
-rw-r--r--src/lib/util/unicode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/unicode.cpp b/src/lib/util/unicode.cpp
index 8e6478beee3..4a83b675087 100644
--- a/src/lib/util/unicode.cpp
+++ b/src/lib/util/unicode.cpp
@@ -195,7 +195,7 @@ int uchar_from_utf8(char32_t *uchar, const char *utf8char, size_t count)
{
char32_t const auxchar = (unsigned char)utf8char[i];
- // all auxillary chars must be between 0x80-0xbf
+ // all auxiliary chars must be between 0x80-0xbf
if ((auxchar & 0xc0) != 0x80)
return -1;