frioux / Syntax-Keyword-Gather

Implements the Perl 6 'gather/take' control structure in Perl 5
https://metacpan.org/pod/Syntax::Keyword::Gather
3 stars 9 forks source link

duplicate POD NAME in tarball #2

Closed fschlich closed 11 years ago

fschlich commented 11 years ago

Hi,

the Syntax-Keyword-Gather tarball on CPAN contains a duplicate NAME entry in the POD. The patch to fix this is below, but what puzzles me is that the source here on github seems to have never contained this duplicate entry??

Florian


--- a/lib/Syntax/Keyword/Gather.pm
+++ b/lib/Syntax/Keyword/Gather.pm
@@ -64,7 +64,7 @@

 =head1 NAME

-Syntax::Keyword::Gather
+Syntax::Keyword::Gather - Implements the Perl 6 'gather/take' control structure in Perl 5

 =head1 VERSION

@@ -221,10 +221,6 @@
     }
  }

-=head1 NAME
-
-Syntax::Keyword::Gather - Implements the Perl 6 'gather/take' control structure in Perl 5
-
 =head1 HISTORY

 This module was forked from Damian Conway's L<Perl6::Gather> for a few reasons.
frioux commented 11 years ago

Oh sorry about that, this is a dist zilla issue. Basically because the pod is munged at build time there should be no NAME header at all. I'll fix this shortly. Thanks for the heads up!