mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 06:18:39 +00:00
Fix typo in strings.equal_fold
This commit is contained in:
@@ -438,7 +438,7 @@ equal_fold :: proc(u, v: string) -> (res: bool) {
|
||||
|
||||
r := unicode.simple_fold(sr)
|
||||
for r != sr && r < tr {
|
||||
r = unicode.simple_fold(sr)
|
||||
r = unicode.simple_fold(r)
|
||||
}
|
||||
if r == tr {
|
||||
continue loop
|
||||
|
||||
Reference in New Issue
Block a user