From: Perl 5 Porters Date: Mon, 11 Mar 1996 07:12:42 +0000 (+0000) Subject: Yes, you guessed it -- a typos fixed X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9b1b54d0581812b8017b125420e5d2fb98df5bed;p=p5sagit%2Fp5-mst-13.2.git Yes, you guessed it -- a typos fixed --- diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 037ede1..c3ef450 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 explicitly iterates the other loop +accidentally executed, the C explicitly iterates the other loop rather than merely terminating the inner one. And it's faster because Perl executes a C statement more rapidly than it would the equivalent C loop.