summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-06-13 12:51:14 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-06-13 12:51:14 +0000
commita0ae32d368a84fe6385f561117e356b323fe45b7 (patch)
treef3410fa600a8b7e9029d90e80a6173f43bc33cbb /pod/perlsub.pod
parent1d2de774c9ccd6c17b728bf1c237fd74eb05416d (diff)
downloadperl-a0ae32d368a84fe6385f561117e356b323fe45b7.tar.gz
Also perlsub needs to be slightly more upbeat about attributes.
p4raw-id: //depot/perl@17220
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index b92c63a6f4..ce3b120633 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -220,9 +220,9 @@ Synopsis:
my @oof = @bar; # declare @oof lexical, and init it
my $x : Foo = $y; # similar, with an attribute applied
-B<WARNING>: The use of attribute lists on C<my> declarations is
-experimental. This feature should not be relied upon. It may
-change or disappear in future releases of Perl. See L<attributes>.
+B<WARNING>: The use of attribute lists on C<my> declarations is still
+evolving. The current semantics and interface are subject to change.
+See L<attributes> and L<Attribute::Handlers>.
The C<my> operator declares the listed variables to be lexically
confined to the enclosing block, conditional (C<if/unless/elsif/else>),
@@ -1360,7 +1360,7 @@ parsed and invoked:
use attributes __PACKAGE__, \&plugh, q[Ugly('\(")], 'Bad';
For further details on attribute lists and their manipulation,
-see L<attributes>.
+see L<attributes> and L<Attribute::Handlers>.
=head1 SEE ALSO