diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-16 09:19:01 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2026-01-16 09:19:01 +0000 |
| commit | 71c4da8e344e406f02faf1bfc76148bbdfc474a8 (patch) | |
| tree | bbbb93c54f35df4d3a24afe6bf243541303fd22d /core | |
| parent | fce498744f797a64f775676fec479a22c9aa74f9 (diff) | |
Fix typo in strings.equal_fold
Diffstat (limited to 'core')
| -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 beaa8bda1..bad0ac26a 100644 --- a/core/strings/strings.odin +++ b/core/strings/strings.odin @@ -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 |