diff options
author | David Golden <dagolden@cpan.org> | 2010-09-24 18:03:49 +0000 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2010-09-24 18:03:49 +0000 |
commit | 405fd67ea799e305822e4c34efb193e8866f623f (patch) | |
tree | 0df65a2e330166cd3cbcf457d764fd1d9db28885 /pod | |
parent | e23837fbaecd33f5802df8225c71bd62cee30314 (diff) | |
download | perl-405fd67ea799e305822e4c34efb193e8866f623f.tar.gz |
fix typo in perl5135delta
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl5135delta.pod | 2 | ||||
-rw-r--r-- | pod/perldelta.pod | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/pod/perl5135delta.pod b/pod/perl5135delta.pod index 0e29087dc9..de76d586bd 100644 --- a/pod/perl5135delta.pod +++ b/pod/perl5135delta.pod @@ -72,7 +72,7 @@ Previously, the following code resulted in a successful match: my @a = qw(a y0 z); my @b = qw(a x0 z); - $a[0 .. $#b] ~~ @b; + @a[0 .. $#b] ~~ @b; This odd behaviour has now been fixed L<[perl #77468]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=77468>. diff --git a/pod/perldelta.pod b/pod/perldelta.pod index b2d23135f6..a3c89cee65 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -462,6 +462,16 @@ XXX XXX If any significant core contributor has died, we've added a short obituary here. +=head1 Errata + +=over 4 + +=item * + +Fixed a typo in L<perl5135delta> regarding array slices and smart matching + +=back + =head1 Acknowledgements XXX The list of people to thank goes here. |