mirror of
https://github.com/curl/curl.git
synced 2026-06-22 22:35:38 +03:00
keywords: sort case insensitive
This commit is contained in:
parent
c38b573ff5
commit
8fdb87d0df
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ sub show {
|
|||
}
|
||||
|
||||
# sort alphabetically
|
||||
my @mtest = reverse sort { $b cmp $a } keys %k;
|
||||
my @mtest = reverse sort { lc($b) cmp lc($a) } keys %k;
|
||||
|
||||
print <<TOP
|
||||
<table><tr><th>Num</th><th>Keyword</th><th>Test Cases</th></tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue