summaryrefslogtreecommitdiff
path: root/pod/perlref.pod
diff options
context:
space:
mode:
authorreneeb <github@renee-baecker.de>2016-04-27 16:00:02 +0200
committerRicardo Signes <rjbs@cpan.org>2016-04-30 15:04:54 -0400
commit10d36cf9c1885126580478a10462ed672361059e (patch)
treee053354283eb52a89ce67a1b932802046b6422d8 /pod/perlref.pod
parent1a8aefec218b12053a0d3589cae2c353c1360887 (diff)
downloadperl-10d36cf9c1885126580478a10462ed672361059e.tar.gz
perllol: remove docs about the removed autoderef feature
Diffstat (limited to 'pod/perlref.pod')
-rw-r--r--pod/perlref.pod7
1 files changed, 0 insertions, 7 deletions
diff --git a/pod/perlref.pod b/pod/perlref.pod
index e64abe4360..8959ba5554 100644
--- a/pod/perlref.pod
+++ b/pod/perlref.pod
@@ -51,13 +51,6 @@ When a scalar is holding a reference, it always behaves as a simple scalar.
It doesn't magically start being an array or hash or subroutine; you have to
tell it explicitly to do so, by dereferencing it.
-That said, be aware that Perl version 5.14 introduces an exception
-to the rule, for syntactic convenience. Experimental array and hash container
-function behavior allows array and hash references to be handled by Perl as
-if they had been explicitly syntactically dereferenced. See
-L<perl5140delta/"Syntactical Enhancements">
-and L<perlfunc> for details.
-
=head2 Making References
X<reference, creation> X<referencing>