summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorPiotr Fusik <pfusik@op.pl>2005-07-30 23:54:19 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-08-01 08:13:10 +0000
commitd7f8936a2fe7fc93635b0b501d1f941d30d3399f (patch)
tree9ec130d79fad2c450541f9ea56801a6ecd17f962 /pod/perldiag.pod
parent0d65d7d555c9e685ae54e22c9f9eb33ec635ea81 (diff)
downloadperl-d7f8936a2fe7fc93635b0b501d1f941d30d3399f.tar.gz
POD typos
From: "Piotr Fusik" <pfusik@op.pl> Message-ID: <00ef01c59542$3198ba00$26d34dd5@piec> p4raw-id: //depot/perl@25253
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r--pod/perldiag.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index c33efceb47..8bd0f618a2 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -1642,13 +1642,13 @@ Another possibility is that you attempted to open filedescriptor 0
=item Filehandle %s reopened as %s only for input
(W io) You opened for reading a filehandle that got the same filehandle id
-as STDOUT or STDERR. This occured because you closed STDOUT or STDERR
+as STDOUT or STDERR. This occurred because you closed STDOUT or STDERR
previously.
=item Filehandle STDIN reopened as %s only for output
(W io) You opened for writing a filehandle that got the same filehandle id
-as STDIN. This occured because you closed STDIN previously.
+as STDIN. This occurred because you closed STDIN previously.
=item Final $ should be \$ or $name
@@ -2110,7 +2110,7 @@ effective uids or gids failed.
=item length/code after end of string in unpack
-(F) While unpacking, the string buffer was alread used up when an unpack
+(F) While unpacking, the string buffer was already used up when an unpack
length/code combination tried to obtain more data. This results in
an undefined value for the length. See L<perlfunc/pack>.
@@ -3379,7 +3379,7 @@ earlier.
=item Repeated format line will never terminate (~~ and @# incompatible)
-(F) Your format containes the ~~ repeat-until-blank sequence and a
+(F) Your format contains the ~~ repeat-until-blank sequence and a
numeric field that will never go blank so that the repetition never
terminates. You might use ^# instead. See L<perlform>.