From: Radu Greab Date: Fri, 23 Feb 2001 18:50:48 +0000 (+0200) Subject: small fix in pod/perlop.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=17b829faa49fc1af815121853b94d0a80a9ad31f;p=p5sagit%2Fp5-mst-13.2.git small fix in pod/perlop.pod Message-ID: <14998.38120.623015.916165@ix.netsoft.ro> p4raw-id: //depot/perl@8948 --- diff --git a/pod/perlop.pod b/pod/perlop.pod index d4349ae..2bc889d 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -1605,7 +1605,7 @@ of a C statement (even if disguised as a C loop), the value is automatically assigned to the global variable $_, destroying whatever was there previously. (This may seem like an odd thing to you, but you'll use the construct in almost every Perl -script you write.) The $_ variables is not implicitly localized. +script you write.) The $_ variable is not implicitly localized. You'll have to put a C before the loop if you want that to happen.