diff options
-rw-r--r-- | pod/perlsub.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod index 2ab59fe94d..760e496fab 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -222,8 +222,8 @@ X<&> Since Perl 5.16.0, the C<__SUB__> token is available under C<use feature 'current_sub'> and C<use 5.16.0>. It will evaluate to a reference to the -currently sub, which allows for recursive calls without knowing your -subroutine's name. +currently-running sub, which allows for recursive calls without knowing +your subroutine's name. use 5.16.0; my $factorial = sub { |