In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/405fd67ea799e305822e4c34efb193e8866f623f?hp=e23837fbaecd33f5802df8225c71bd62cee30314>
- Log ----------------------------------------------------------------- commit 405fd67ea799e305822e4c34efb193e8866f623f Author: David Golden <[email protected]> Date: Fri Sep 24 18:03:49 2010 +0000 fix typo in perl5135delta ----------------------------------------------------------------------- Summary of changes: pod/perl5135delta.pod | 2 +- pod/perldelta.pod | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/pod/perl5135delta.pod b/pod/perl5135delta.pod index 0e29087..de76d58 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 b2d2313..a3c89ce 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. -- Perl5 Master Repository
