Skip to content
Snippets Groups Projects
Commit c09f6c72 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

keywords: sort keywords alphabetically

parent 7dbed6a2
No related branches found
No related tags found
No related merge requests found
......@@ -120,8 +120,8 @@ sub show {
return $ret;
}
# numerically on amount, or alphebetically if same amount
my @mtest = reverse sort { $k{$a} <=> $k{$b} || $b cmp $a } keys %k;
# sort alphabetically
my @mtest = reverse sort { $b cmp $a } keys %k;
print <<TOP
<table><tr><th>Num</th><th>Keyword</th><th>Test Cases</th></tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment