This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
A pod nit.
authorAbigail <abigail@abigail.be>
Mon, 21 Aug 2000 14:00:16 +0000 (10:00 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 21 Aug 2000 18:34:02 +0000 (18:34 +0000)
Subject: [PATCH] pod/perlre.pod (was Re: [ID 20000821.007] $&, $1, etc. disappear when sub returns)
Message-ID: <20000821180016.28627.qmail@foad.org>

p4raw-id: //depot/perl@6756

pod/perlre.pod

index fa4aad2..380bc5f 100644 (file)
@@ -360,7 +360,7 @@ everything before the matched string.  And C<$'> returns everything
 after the matched string.
 
 The numbered variables ($1, $2, $3, etc.) and the related punctuation
-set (C<<$+>, C<$&>, C<$`>, and C<$'>) are all dynamically scoped
+set (C<$+>, C<$&>, C<$`>, and C<$'>) are all dynamically scoped
 until the end of the enclosing block or until the next successful
 match, whichever comes first.  (See L<perlsyn/"Compound Statements">.)