aboutsummaryrefslogtreecommitdiff
path: root/core/unicode
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-06-17 10:29:20 +0100
committergingerBill <bill@gingerbill.org>2018-06-17 10:29:20 +0100
commit3eb8aa826823197bf0be223f9bccffdfeb366ebd (patch)
treec0683cb0d60c3a73f18399aa3de845af07fb556f /core/unicode
parent6d1c32eb778fde9f65744a62678d876c7d5c3837 (diff)
Modify CommentGroup parsing
Diffstat (limited to 'core/unicode')
-rw-r--r--core/unicode/utf8/utf8.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/unicode/utf8/utf8.odin b/core/unicode/utf8/utf8.odin
index cfdadd790..c7bf56bed 100644
--- a/core/unicode/utf8/utf8.odin
+++ b/core/unicode/utf8/utf8.odin
@@ -26,7 +26,7 @@ RUNE1_MAX :: 1<<7 - 1;
RUNE2_MAX :: 1<<11 - 1;
RUNE3_MAX :: 1<<16 - 1;
- // The default lowest and highest continuation byte.
+// The default lowest and highest continuation byte.
LOCB :: 0b1000_0000;
HICB :: 0b1011_1111;