projects
/
onyx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aba4573
)
silly bugfix in is_lower
author
Brendan Hansen
<brendan.f.hansen@gmail.com>
Sat, 26 Nov 2022 04:09:44 +0000
(22:09 -0600)
committer
Brendan Hansen
<brendan.f.hansen@gmail.com>
Sat, 26 Nov 2022 04:09:44 +0000
(22:09 -0600)
core/string/char_utils.onyx
patch
|
blob
|
history
diff --git
a/core/string/char_utils.onyx
b/core/string/char_utils.onyx
index 29c1207e0162c783f6b5e9750abc032c4fca3a33..86756ebab6e21f8c79f3e7840c6cba526e58fa12 100644
(file)
--- a/
core/string/char_utils.onyx
+++ b/
core/string/char_utils.onyx
@@
-11,7
+11,7
@@
package core.string
}
is_lower :: (c: u8) -> bool {
- return (c >= #char "a" && c <= #char "
b
");
+ return (c >= #char "a" && c <= #char "
z
");
}
is_upper :: (c: u8) -> bool {