Fix a POD typo.

This commit is contained in:
Colin Kuskie 2009-04-01 03:46:04 +00:00
parent b9959b5da2
commit a34e6b36ec

View file

@ -385,7 +385,7 @@ sub sortHash {
#-------------------------------------------------------------------
=head2 sortHashDecending ( hash )
=head2 sortHashDescending ( hash )
Sorts a hash in decending order by its values. Returns a Tie::IxHash.
You must assign this to a similarly tied hash to preserve the order.
@ -396,7 +396,6 @@ A hash to be sorted.
=cut
sub sortHashDescending {
my %hash = @_;
tie my %newHash, 'Tie::IxHash';
@ -408,5 +407,3 @@ sub sortHashDescending {
1;