Skip to content

Commit

Permalink
Fix Issues #553
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiphin authored and medvednikov committed Jun 25, 2019
1 parent 056b415 commit 0c8afdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/string.v
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 0c8afdf

Please sign in to comment.