aboutsummaryrefslogtreecommitdiff
path: root/core/bytes
diff options
context:
space:
mode:
Diffstat (limited to 'core/bytes')
-rw-r--r--core/bytes/bytes.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bytes/bytes.odin b/core/bytes/bytes.odin
index b3d332c67..a7cf23d1b 100644
--- a/core/bytes/bytes.odin
+++ b/core/bytes/bytes.odin
@@ -91,7 +91,7 @@ equal_fold :: proc(u, v: []byte) -> bool {
if tr < utf8.RUNE_SELF {
switch sr {
- case 'A'..'Z':
+ case 'A'..='Z':
if tr == (sr+'a')-'A' {
continue loop;
}