pull/522/head^2 v0.1.3
Xiphin 2019-06-25 12:29:02 +08:00 committed by Alex Medvednikov
parent 056b41521a
commit 0c8afdfe13
1 changed files with 1 additions and 1 deletions

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)
}