1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
Xiphin 2019-06-25 12:29:02 +08:00 committed by Alex Medvednikov
parent 056b41521a
commit 0c8afdfe13

View File

@ -584,7 +584,7 @@ fn compare_strings_by_len(a, b *string) int {
fn compare_lower_strings(a, b *string) int {
aa := a.to_lower()
bb := a.to_lower()
bb := b.to_lower()
return compare_strings(aa, bb)
}