mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Fix random typo
This commit is contained in:
@@ -350,7 +350,7 @@ contains_any :: proc(s, chars: string) -> (res: bool) {
|
|||||||
|
|
||||||
contains_space :: proc(s: string) -> (res: bool) {
|
contains_space :: proc(s: string) -> (res: bool) {
|
||||||
for c in s {
|
for c in s {
|
||||||
if is_space(r) {
|
if is_space(c) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user