diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-04-26 09:12:28 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-05-18 11:15:02 -0600 |
commit | b1e4fe07f63a6f42bd5f59604152d3029117a06f (patch) | |
tree | 47d4f4621f5039c0808c82d5a059baa029b85f89 /ext/Devel-Peek | |
parent | 1357b38e7171068ca3ae91236534972bbf9217a4 (diff) | |
download | perl-b1e4fe07f63a6f42bd5f59604152d3029117a06f.tar.gz |
Fix broken link
Diffstat (limited to 'ext/Devel-Peek')
-rw-r--r-- | ext/Devel-Peek/Peek.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/Devel-Peek/Peek.pm b/ext/Devel-Peek/Peek.pm index ab0d5eb760..a44acfffef 100644 --- a/ext/Devel-Peek/Peek.pm +++ b/ext/Devel-Peek/Peek.pm @@ -3,7 +3,7 @@ package Devel::Peek; -$VERSION = '1.07'; +$VERSION = '1.08'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -155,6 +155,7 @@ the information about the allocated size and usable size of chunks in each bucket. Again, see L<perldebguts/Using C<$ENV{PERL_DEBUG_MSTATS}>> for details. + Keep in mind that only the first several "odd-numbered" buckets are used, so the information on size of the "odd-numbered" buckets which are not used is probably meaningless. @@ -410,7 +411,7 @@ The output: IV = 42 This shows C<$a> is a reference pointing to an SV. That SV is a PVHV, a -hash. Fields RITER and EITER are used by C<L<each>>. +hash. Fields RITER and EITER are used by C<L<perlfunc/each>>. The "quality" of a hash is defined as the total number of comparisons needed to access every element once, relative to the expected number needed for a |