diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-04-24 22:27:04 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-04-24 22:27:09 -0700 |
commit | 906024c7fead4086ed911b8052d784aa07c2f1e2 (patch) | |
tree | 489c9a776e4f4aae27f6ecfb4ccb9c9553f8b666 /pod | |
parent | 1405d8c98626803a37408a7d016b294df6686604 (diff) | |
download | perl-906024c7fead4086ed911b8052d784aa07c2f1e2.tar.gz |
perlsub: Fix new typo
Since the typo was added during code freeze, I hope I’m not going too
far in fixing it during code freeze. :-)
Diffstat (limited to 'pod')
-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 { |