[svn:perlfaq] r12294 - perlfaq/trunk

[email protected] Fri, 2 Jan 2009 06:15:18 -0800 (PST)
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
Author: rafael
Date: Fri Jan  2 06:15:17 2009
New Revision: 12294

Modified:
   perlfaq/trunk/perlfaq7.pod

Log:
Typo correction by William Pursell


Modified: perlfaq/trunk/perlfaq7.pod
==============================================================================
--- perlfaq/trunk/perlfaq7.pod	(original)
+++ perlfaq/trunk/perlfaq7.pod	Fri Jan  2 06:15:17 2009
@@ -153,7 +153,7 @@
 just such situations as the one above.
 
 Another operator with surprising precedence is exponentiation.  It
-binds more tightly even than unary minus, making C<-2**2> product a
+binds more tightly even than unary minus, making C<-2**2> produce a
 negative not a positive four.  It is also right-associating, meaning
 that C<2**3**2> is two raised to the ninth power, not eight squared.