In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/31f5ea5a6c30d7fec142332a93a800d4f190e56d?hp=156759b6c1970a6b29d93de06d3f87625af28c18>
- Log ----------------------------------------------------------------- commit 31f5ea5a6c30d7fec142332a93a800d4f190e56d Author: Eugen Konkov <[email protected]> Date: Thu Nov 29 10:21:20 2018 -0700 PATCH: [perl #133700] avoid use of $a and $b in perldata ----------------------------------------------------------------------- Summary of changes: pod/perldata.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perldata.pod b/pod/perldata.pod index d03fe25773..2aecb83b7f 100644 --- a/pod/perldata.pod +++ b/pod/perldata.pod @@ -983,11 +983,11 @@ Multidimensional arrays may be emulated by subscripting a hash with a list. The elements of the list are joined with the subscript separator (see L<perlvar/$;>). - $foo{$a,$b,$c} + $foo{$x,$y,$z} is equivalent to - $foo{join($;, $a, $b, $c)} + $foo{join($;, $x, $y, $z)} The default subscript separator is "\034", the same as SUBSEP in B<awk>. -- Perl5 Master Repository
