summaryrefslogtreecommitdiff
path: root/zen/utf.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/utf.h')
-rw-r--r--zen/utf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/utf.h b/zen/utf.h
index 5a095874..37a866ab 100644
--- a/zen/utf.h
+++ b/zen/utf.h
@@ -180,7 +180,7 @@ size_t getUtf8Len(Char8 ch) //ch must be first code unit! returns 0 on error!
return 3;
if (ch >> 3 == 0x1e)
return 4;
- return 0; //innvalid begin of UTF8 encoding
+ return 0; //invalid begin of UTF8 encoding
}
bgstack15