diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-09-15 23:48:40 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-09-17 16:57:51 -0700 |
commit | 441078c249a2505af353ca7b2f96789341d1b8eb (patch) | |
tree | ef221c35202b411faf9ef0c1879644e36bfbc5b0 /pod/perlsub.pod | |
parent | 40ba7a517798fdce321416d57d1c0f2a17cab67b (diff) | |
download | perl-441078c249a2505af353ca7b2f96789341d1b8eb.tar.gz |
pod/perlsub.pod: Warn about possible lexsub removal
Diffstat (limited to 'pod/perlsub.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 3bb1f0bfb4..993b2b5467 100644 --- a/pod/perlsub.pod +++ b/pod/perlsub.pod @@ -825,8 +825,8 @@ subroutine never gets that chance. Consider; =head2 Lexical Subroutines X<my sub> X<state sub> X<our sub> X<subroutine, lexical> -B<WARNING>: Lexical subroutines are still experimental and the -implementation may change in future versions of Perl. +B<WARNING>: Lexical subroutines are still experimental. The feature may be +modified or removed in future versions of Perl. Lexical subroutines are only available under the C<use feature 'lexical_subs'> pragma, which produces a warning unless the |