summaryrefslogtreecommitdiff
path: root/regen
diff options
context:
space:
mode:
authorEugene Alvin Villar <seav80@gmail.com>2021-02-11 10:40:02 +0800
committerKarl Williamson <khw@cpan.org>2021-02-11 12:17:15 -0800
commitc7888de9554c23931a2b9251bcb025af931d447c (patch)
tree45a1188c46e7f8b1c213fe45fea57b58ece52dec /regen
parentd702bd509341ea3ff713e71c51f01e96f0d44886 (diff)
downloadperl-c7888de9554c23931a2b9251bcb025af931d447c.tar.gz
Fix trivial syntax bugs in doc for multidimensional
Diffstat (limited to 'regen')
-rwxr-xr-xregen/feature.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/feature.pl b/regen/feature.pl
index ffe3fee994..2db99ef957 100755
--- a/regen/feature.pl
+++ b/regen/feature.pl
@@ -787,8 +787,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