[svn:perlfaq] r6610 - perlfaq/trunk

[email protected] Sun, 2 Jul 2006 19:49:51 -0700 (PDT)
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
Author: robert
Date: Sun Jul  2 19:49:50 2006
New Revision: 6610

Modified:
   perlfaq/trunk/perlfaq4.pod

Log:
Change 28464 by craigb@craigb-brianor on 2006/07/02 18:06:36

	s/have a more/have more/ typo fix in perlfaq4



Modified: perlfaq/trunk/perlfaq4.pod
==============================================================================
--- perlfaq/trunk/perlfaq4.pod	(original)
+++ perlfaq/trunk/perlfaq4.pod	Sun Jul  2 19:49:50 2006
@@ -592,7 +592,7 @@
 This is documented in L<perlref>, and although it's not the easiest
 thing to read, it does work. In each of these examples, we call the
 function inside the braces used to dereference a reference. If we
-have a more than one return value, we can construct and dereference an
+have more than one return value, we can construct and dereference an
 anonymous array. In this case, we call the function in list context.
 
 	print "The time values are @{ [localtime] }.\n";