summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorIan Phillipps <Ian.Phillipps@iname.com>1999-08-21 13:36:12 +0100
committerJarkko Hietaniemi <jhi@iki.fi>1999-09-17 20:06:08 +0000
commit0eb389d527ba6573736dda38fa906f58756ce9ae (patch)
treecbafc991579d6bf52d8964d6353abb91c39dd275 /pod/perlsyn.pod
parent42d382189339e56f3bd13a71933349bc8b7e8b42 (diff)
downloadperl-0eb389d527ba6573736dda38fa906f58756ce9ae.tar.gz
Re: [ID 19990820.007] Small typo in perlsyn.pod
To: Hans GINZEL <hgin2088@mail.kolej.mff.cuni.cz>, perl5-porters@perl.org Message-ID: <19990821123612.A9955@homer.diplex.co.uk> p4raw-id: //depot/cfgperl@4178
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r--pod/perlsyn.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod
index 680ecb9ad9..0dd842d2a2 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -155,7 +155,7 @@ C<if> an C<else> goes with. If you use C<unless> in place of C<if>,
the sense of the test is reversed.
The C<while> statement executes the block as long as the expression is
-true (does not evaluate to the null string (C<""> or C<0> or C<"0">).
+true (does not evaluate to the null string C<""> or C<0> or C<"0">).
The LABEL is optional, and if present, consists of an identifier followed
by a colon. The LABEL identifies the loop for the loop control
statements C<next>, C<last>, and C<redo>.