From: Brendan Hansen Date: Sat, 26 Nov 2022 04:09:44 +0000 (-0600) Subject: silly bugfix in is_lower X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=8d34e052b0d6a33a4c522206ba720030d3f472ee;p=onyx.git silly bugfix in is_lower --- diff --git a/core/string/char_utils.onyx b/core/string/char_utils.onyx index 29c1207e..86756eba 100644 --- 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 {