In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/8b7906d1719d3641e1ea0c94d934ecce176275cb?hp=deaaea8c017369305bf7859858531c736ca7ed4b>

- Log -----------------------------------------------------------------
commit 8b7906d1719d3641e1ea0c94d934ecce176275cb
Author: Rafael Garcia-Suarez <r...@consttype.org>
Date:   Mon Jul 6 08:09:04 2015 +0200

    Some nits in perlsub
    
    - DOES was not listed in the list of methods with reserved names
    - Remove one useless instance of empty list assignment
    - Punctuation
-----------------------------------------------------------------------

Summary of changes:
 pod/perlsub.pod | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index f057b96..48f178f 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -258,11 +258,11 @@ C<AUTOLOAD>
 
 =item documented in L<perlmod>
 
-C<CLONE>, C<CLONE_SKIP>, 
+C<CLONE>, C<CLONE_SKIP>
 
 =item documented in L<perlobj>
 
-C<DESTROY>
+C<DESTROY>, C<DOES>
 
 =item documented in L<perltie>
 
@@ -1289,7 +1289,7 @@ of all their former last elements:
 
     sub popmany {
        my $aref;
-       my @retlist = ();
+       my @retlist;
        foreach $aref ( @_ ) {
            push @retlist, pop @$aref;
        }

--
Perl5 Master Repository

Reply via email to