In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d62e4400a62cae85d546fe1f5b0731630b537851?hp=12ea29d9381f1bf4d074acb051b75b39cc821823>
- Log ----------------------------------------------------------------- commit d62e4400a62cae85d546fe1f5b0731630b537851 Author: Ricardo Signes <[email protected]> Date: Sat Oct 5 15:26:40 2013 -0400 correct documentation of postfix glob deref thanks, mst ----------------------------------------------------------------------- Summary of changes: pod/perlref.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/perlref.pod b/pod/perlref.pod index f96463b..3f53741 100644 --- a/pod/perlref.pod +++ b/pod/perlref.pod @@ -771,7 +771,7 @@ left-to-right. The following equivalencies are defined: $aref->@*; # same as @{ $aref } $href->%*; # same as %{ $href } $cref->&*; # same as &{ $cref } - $gref->&*; # same as *{ $cref } + $gref->**; # same as *{ $gref } Note especially that C<< $cref->&* >> is I<not> equivalent to C<< $cref->() >>, and can serve different purposes. -- Perl5 Master Repository
