[svn:perlfaq] r11749 - perlfaq/trunk

[email protected] Sat, 6 Sep 2008 19:11:53 -0700 (PDT)
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
Author: comdog
Date: Sat Sep  6 19:11:51 2008
New Revision: 11749

Modified:
   perlfaq/trunk/perlfaq6.pod

Log:
* perlfaq6: Why does using $&, $`, or $' slow my program down?
	+ Typo fix


Modified: perlfaq/trunk/perlfaq6.pod
==============================================================================
--- perlfaq/trunk/perlfaq6.pod	(original)
+++ perlfaq/trunk/perlfaq6.pod	Sat Sep  6 19:11:51 2008
@@ -850,7 +850,7 @@
 
 Perl 5.10 added three specials, C<${^MATCH}>, C<${^PREMATCH}>, and
 C<${^POSTMATCH}> to do the same job but without the global performance
-penalty. Pelr only sets these variables if you compile or execute the
+penalty. Perl 5.10 only sets these variables if you compile or execute the
 regular expression with the C</p> modifier.
 
 =head2 What good is C<\G> in a regular expression?