Fix a POD typo.
This commit is contained in:
parent
b9959b5da2
commit
a34e6b36ec
1 changed files with 1 additions and 4 deletions
|
|
@ -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.
|
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.
|
You must assign this to a similarly tied hash to preserve the order.
|
||||||
|
|
@ -396,7 +396,6 @@ A hash to be sorted.
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
|
||||||
sub sortHashDescending {
|
sub sortHashDescending {
|
||||||
my %hash = @_;
|
my %hash = @_;
|
||||||
tie my %newHash, 'Tie::IxHash';
|
tie my %newHash, 'Tie::IxHash';
|
||||||
|
|
@ -408,5 +407,3 @@ sub sortHashDescending {
|
||||||
|
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue