This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
small fix in pod/perlop.pod
authorRadu Greab <radu@netsoft.ro>
Fri, 23 Feb 2001 18:50:48 +0000 (20:50 +0200)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 26 Feb 2001 14:35:53 +0000 (14:35 +0000)
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.