summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-03-11 07:12:42 +0000
committerCharles Bailey <bailey@genetics.upenn.edu>1996-03-11 07:12:42 +0000
commit9b1b54d0581812b8017b125420e5d2fb98df5bed (patch)
tree8d9d9b2517f77763a582f80d9527342a74968614 /pod/perlsyn.pod
parent6e47f80896b36bab7a1b96db9509e98a6f366c90 (diff)
downloadperl-9b1b54d0581812b8017b125420e5d2fb98df5bed.tar.gz
Yes, you guessed it -- a typos fixed
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 037ede1099..c3ef4501dd 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -317,7 +317,7 @@ do it:
See how much easier this is? It's cleaner, safer, and faster. It's
cleaner because it's less noisy. It's safer because if code gets added
between the inner and outer loops later on, the new code won't be
-accidentally excecuted: the C<next> explicitly iterates the other loop
+accidentally executed, the C<next> explicitly iterates the other loop
rather than merely terminating the inner one. And it's faster because
Perl executes a C<foreach> statement more rapidly than it would the
equivalent C<for> loop.