summaryrefslogtreecommitdiff
path: root/pod/perlrun.pod
diff options
context:
space:
mode:
authorSteven Humphrey <catchperl@33k.co.uk>2016-09-20 12:42:39 +0100
committerJames E Keenan <jkeenan@cpan.org>2016-09-20 20:34:01 -0400
commit2c4188f3fe3f46d4ebe3f23a094a7cf96ebe87f1 (patch)
tree001590b6440dd288367bc2c4b8779a57487fed29 /pod/perlrun.pod
parent262514fd94937b2626a85fe69718d557de10d6c9 (diff)
downloadperl-2c4188f3fe3f46d4ebe3f23a094a7cf96ebe87f1.tar.gz
Fix typo in perlrun.pod
s/and/any/ perl -c documentation has a typo when talking about BEGIN blocks. Steven Humphrey is now a Perl author. For: RT #129313
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r--pod/perlrun.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index 12cba356f5..9d59a6af36 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -345,7 +345,7 @@ You can also use binmode() to set the encoding of an I/O stream.
X<-c>
causes Perl to check the syntax of the program and then exit without
-executing it. Actually, it I<will> execute and C<BEGIN>, C<UNITCHECK>,
+executing it. Actually, it I<will> execute any C<BEGIN>, C<UNITCHECK>,
or C<CHECK> blocks and any C<use> statements: these are considered as
occurring outside the execution of your program. C<INIT> and C<END>
blocks, however, will be skipped.