Fix random typo

This commit is contained in:
gingerBill
2024-08-19 16:33:17 +01:00
parent 9d7ab8d5ca
commit 2999c02f65

View File

@@ -350,7 +350,7 @@ contains_any :: proc(s, chars: string) -> (res: bool) {
contains_space :: proc(s: string) -> (res: bool) {
for c in s {
if is_space(r) {
if is_space(c) {
return true
}
}