diff options
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 } |