diff options
| author | gingerBill <bill@gingerbill.org> | 2024-08-19 16:33:17 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-08-19 16:33:17 +0100 |
| commit | 2999c02f65f342eb34c4e048397632e3a396b222 (patch) | |
| tree | 2b4876af0534a87d0274f140c5c5c92076e61022 | |
| parent | 9d7ab8d5ca11acfc3c9b3e67e7f454523f7b6148 (diff) | |
Fix random typo
| -rw-r--r-- | core/strings/strings.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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 } } |