summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2006-07-02 18:06:36 +0000
committerCraig A. Berry <craigberry@mac.com>2006-07-02 18:06:36 +0000
commit5ae37c3f727422baf517cdb861077f4b05166c93 (patch)
treea81b375169a95783c2a059ee87a79fa1f757f14b
parentf62a57de64cd5ddde982ef9f2ab6d195e87eec01 (diff)
downloadperl-5ae37c3f727422baf517cdb861077f4b05166c93.tar.gz
s/have a more/have more/ typo fix in perlfaq4
p4raw-id: //depot/perl@28464
-rw-r--r--pod/perlfaq4.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod
index 0966139224..dc968e3b5a 100644
--- a/pod/perlfaq4.pod
+++ b/pod/perlfaq4.pod
@@ -593,7 +593,7 @@ does not show up next to itself
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";