3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

Correct minor typo; descending --> ascending

This commit is contained in:
Pragmatic Software 2015-02-11 21:38:41 -08:00
parent edd8762ae2
commit 7b7554802d

View File

@ -149,7 +149,7 @@ if (lc $command eq 'rank') {
print "Usage: rank [+-]<keyword>; available keywords: "; print "Usage: rank [+-]<keyword>; available keywords: ";
print join ', ', sort keys %ranks; print join ', ', sort keys %ranks;
print ".\n"; print ".\n";
print "For example, to rank by correct answers in descending order: rank -correct\n"; print "For example, to rank by correct answers in ascending order: rank -correct\n";
goto END; goto END;
} }