aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2026-01-16 09:19:01 +0000
committergingerBill <gingerBill@users.noreply.github.com>2026-01-16 09:19:01 +0000
commit71c4da8e344e406f02faf1bfc76148bbdfc474a8 (patch)
treebbbb93c54f35df4d3a24afe6bf243541303fd22d /core
parentfce498744f797a64f775676fec479a22c9aa74f9 (diff)
Fix typo in strings.equal_fold
Diffstat (limited to 'core')
-rw-r--r--core/strings/strings.odin2
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