aboutsummaryrefslogtreecommitdiff
path: root/core/utf8.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-08-03 21:21:56 +0100
committerGinger Bill <bill@gingerbill.org>2017-08-03 21:21:56 +0100
commit49d337c83039715fd3100f6ec8a88dff80c08c4b (patch)
treef129486fb80a44dc106a277a576438d0ce344d8c /core/utf8.odin
parent294092979e89faa67dc77d2261e9ddafc18b0d0d (diff)
v0.6.2; Use Ada_Case for typesv0.6.2
Diffstat (limited to 'core/utf8.odin')
-rw-r--r--core/utf8.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/utf8.odin b/core/utf8.odin
index 7df548455..71358f68d 100644
--- a/core/utf8.odin
+++ b/core/utf8.odin
@@ -28,9 +28,9 @@ RUNE3_MAX :: 1<<16 - 1;
LOCB :: 0b1000_0000;
HICB :: 0b1011_1111;
-AcceptRange :: struct { lo, hi: u8 }
+Accept_Range :: struct {lo, hi: u8};
-accept_ranges := [5]AcceptRange{
+accept_ranges := [5]Accept_Range{
{0x80, 0xbf},
{0xa0, 0xbf},
{0x80, 0x9f},