diff options
author | Eugene Alvin Villar <seav80@gmail.com> | 2021-02-11 10:40:02 +0800 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2021-02-11 12:17:15 -0800 |
commit | c7888de9554c23931a2b9251bcb025af931d447c (patch) | |
tree | 45a1188c46e7f8b1c213fe45fea57b58ece52dec /lib | |
parent | d702bd509341ea3ff713e71c51f01e96f0d44886 (diff) | |
download | perl-c7888de9554c23931a2b9251bcb025af931d447c.tar.gz |
Fix trivial syntax bugs in doc for multidimensional
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feature.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/feature.pm b/lib/feature.pm index e6e0442582..c57c75da8c 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -381,8 +381,8 @@ CPAN module. This feature enables multidimensional array emulation, a perl 4 (or earlier) feature that was used to emulate multidimensional arrays with -hashes. This works by converting code like C<< $foo{$x, y} >> into -C<< $foo{join($;, $x, $y} >>. It is enabled by default, but can be +hashes. This works by converting code like C<< $foo{$x, $y} >> into +C<< $foo{join($;, $x, $y)} >>. It is enabled by default, but can be turned off to disable multidimensional array emulation. When this feature is disabled the syntax that is normally replaced |