diff options
author | James E Keenan <jkeenan@cpan.org> | 2012-12-25 21:39:39 -0500 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2012-12-25 21:46:23 -0500 |
commit | bc98515d31270017e2b8ce95d9a547c86bb0905a (patch) | |
tree | 42e9a586c829becbc8b2ec17e3f7260f47588cf2 | |
parent | 77a9214240d18319141bf575acd42fdf4ca3d9c7 (diff) | |
download | perl-bc98515d31270017e2b8ce95d9a547c86bb0905a.tar.gz |
ext/Hash-Util/lib/Hash/Util.pm: Bump $VERSION to reflect documentation
changes.
Revert one typographical correction to satisfy t/porting/podcheck.t
-rw-r--r-- | ext/Hash-Util/lib/Hash/Util.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Hash-Util/lib/Hash/Util.pm b/ext/Hash-Util/lib/Hash/Util.pm index 864d1d6294..6dcb6ccaef 100644 --- a/ext/Hash-Util/lib/Hash/Util.pm +++ b/ext/Hash-Util/lib/Hash/Util.pm @@ -32,7 +32,7 @@ our @EXPORT_OK = qw( bucket_stats bucket_info bucket_array lock_hash_recurse unlock_hash_recurse ); -our $VERSION = '0.13'; +our $VERSION = '0.14'; require XSLoader; XSLoader::load(); @@ -499,7 +499,7 @@ know it. See also L<perlrun/PERL_HASH_SEED_DEBUG>. Return a set of basic information about a hash. - my ($keys, $buckets, $used, @length_counts) = bucket_info($hash); + my ($keys, $buckets, $used, @length_counts)= bucket_info($hash); Fields are as follows: |