summaryrefslogtreecommitdiff
path: root/ext/Devel-Peek
diff options
context:
space:
mode:
authorSamanta Navarro <ferivoz@riseup.net>2020-10-03 12:39:08 +0000
committerJames E Keenan <jkeenan@cpan.org>2020-10-03 10:40:40 -0400
commitf1460a6600d0790c237adf97bee973eae35630bf (patch)
treea43dc647d0280e8df3fc08729e7b48ed7d6a7182 /ext/Devel-Peek
parent0df722d69378fb3b3df5c8d7746122138fcdc5a9 (diff)
downloadperl-f1460a6600d0790c237adf97bee973eae35630bf.tar.gz
Fix typos
For: https://github.com/Perl/perl5/pull/18201 Committer: Samanta Navarro is now a Perl author. To keep 'make test_porting' happy: Increment $VERSION in several files. Regenerate uconfig.h via './perl -Ilib regen/uconfig_h.pl'.
Diffstat (limited to 'ext/Devel-Peek')
-rw-r--r--ext/Devel-Peek/Peek.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Devel-Peek/Peek.pm b/ext/Devel-Peek/Peek.pm
index b5743d2a43..1879bf9d6e 100644
--- a/ext/Devel-Peek/Peek.pm
+++ b/ext/Devel-Peek/Peek.pm
@@ -3,7 +3,7 @@
package Devel::Peek;
-$VERSION = '1.29';
+$VERSION = '1.30';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
@@ -119,7 +119,7 @@ All output is to STDERR.
The C<Dump()> function takes one or two arguments: something to dump, and
an optional limit for recursion and array elements (default is 4). The
-first argument is evaluted in rvalue scalar context, with exceptions for
+first argument is evaluated in rvalue scalar context, with exceptions for
@array and %hash, which dump the array or hash itself. So C<Dump @array>
works, as does C<Dump $foo>. And C<Dump pos> will call C<pos> in rvalue
context, whereas C<Dump ${\pos}> will call it in lvalue context.