From 8d34e052b0d6a33a4c522206ba720030d3f472ee Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Fri, 25 Nov 2022 22:09:44 -0600 Subject: [PATCH] silly bugfix in is_lower --- core/string/char_utils.onyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.25.1