small fix in pod/perlop.pod
Radu Greab [Fri, 23 Feb 2001 18:50:48 +0000 (20:50 +0200)]
Message-ID: <14998.38120.623015.916165@ix.netsoft.ro>

p4raw-id: //depot/perl@8948

pod/perlop.pod

index d4349ae..2bc889d 100644 (file)
@@ -1605,7 +1605,7 @@ of a C<while> statement (even if disguised as a C<for(;;)> 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<local $_;> before the loop if you want that
 to happen.