From 2999c02f65f342eb34c4e048397632e3a396b222 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 19 Aug 2024 16:33:17 +0100 Subject: [PATCH] Fix random typo --- core/strings/strings.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/strings/strings.odin b/core/strings/strings.odin index 53c33e828..216d7ad79 100644 --- a/core/strings/strings.odin +++ b/core/strings/strings.odin @@ -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 } }