diff options
author | brian d foy <bdfoy@cpan.org> | 2010-01-13 20:00:07 +0100 |
---|---|---|
committer | brian d foy <bdfoy@cpan.org> | 2010-01-16 08:41:31 -0600 |
commit | 23bec515f0a65900d9c3adf29d764f92b107d01d (patch) | |
tree | 1082f262a28265ff597bb02d05d2fc7eca449d7d /pod/perlfaq7.pod | |
parent | cb4a303650e05576b6797aaca1373576a2f37af7 (diff) | |
download | perl-23bec515f0a65900d9c3adf29d764f92b107d01d.tar.gz |
* Backported Tom's perlfaq cleanup to the perlfaq repo, and now they are back here :)
Diffstat (limited to 'pod/perlfaq7.pod')
-rw-r--r-- | pod/perlfaq7.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index 1cc32c20e1..1bfab25854 100644 --- a/pod/perlfaq7.pod +++ b/pod/perlfaq7.pod @@ -656,7 +656,7 @@ see L<perltoot/"Overridden Methods">. Calling a subroutine as C<&foo> with no trailing parentheses ignores the prototype of C<foo> and passes it the current value of the argument list, C<@_>. Here's an example; the C<bar> subroutine calls C<&foo>, -which prints what its arguments list: +which prints its arguments list: sub bar { &foo } |