This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Yes, you guessed it -- a typos fixed
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>
Mon, 11 Mar 1996 07:12:42 +0000 (07:12 +0000)
committerCharles Bailey <bailey@genetics.upenn.edu>
Mon, 11 Mar 1996 07:12:42 +0000 (07:12 +0000)
pod/perlsyn.pod

index 037ede1..c3ef450 100644 (file)
@@ -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.