Commit 8fdb87d0 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

keywords: sort case insensitive

parent c38b573f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -121,7 +121,7 @@ sub show {
}
}


# sort alphabetically 
# sort alphabetically 
my @mtest = reverse sort { $b cmp $a } keys %k;
my @mtest = reverse sort { lc($b) cmp lc($a) } keys %k;


print <<TOP
print <<TOP
<table><tr><th>Num</th><th>Keyword</th><th>Test Cases</th></tr>
<table><tr><th>Num</th><th>Keyword</th><th>Test Cases</th></tr>