Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Pod-Section CPAN distribution.

Report information
The Basics
Id: 106185
Status: resolved
Priority: 0/
Queue: Pod-Section

People
Owner: Nobody in particular
Requestors: frioux [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



CC: Arthur Axel 'fREW' Schmidt <frioux [...] gmail.com>
Subject: [PATCH] Fix spelling typos in Pod
Date: Fri, 31 Jul 2015 16:58:49 -0700
To: bug-Pod-Section [...] rt.cpan.org
From: Arthur Axel 'fREW' Schmidt <frioux [...] gmail.com>
--- lib/Pod/Section.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Pod/Section.pm b/lib/Pod/Section.pm index 04ac345..95fab05 100644 --- a/lib/Pod/Section.pm +++ b/lib/Pod/Section.pm @@ -117,13 +117,13 @@ our $VERSION = '0.01'; use Pod::Section qw/select_podsection/; - my @function_pods = select_podsection($mdoule, @functions); - my @section_pods = select_podsection($mdoule, @sections); + my @function_pods = select_podsection($module, @functions); + my @section_pods = select_podsection($module, @sections); In scalar context, pod is joined as one scalar. - my $function_pods = select_podsection($mdoule, @functions); - my $section_pods = select_podsection($mdoule, @sections); + my $function_pods = select_podsection($module, @functions); + my $section_pods = select_podsection($module, @sections); use podsection on shell -- 2.5.0
Thanks for your report. I fixed it. On 2015-7月-31 金 19:59:07, frew wrote: Show quoted text
> --- > lib/Pod/Section.pm | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/lib/Pod/Section.pm b/lib/Pod/Section.pm > index 04ac345..95fab05 100644 > --- a/lib/Pod/Section.pm > +++ b/lib/Pod/Section.pm > @@ -117,13 +117,13 @@ our $VERSION = '0.01'; > > use Pod::Section qw/select_podsection/; > > - my @function_pods = select_podsection($mdoule, @functions); > - my @section_pods = select_podsection($mdoule, @sections); > + my @function_pods = select_podsection($module, @functions); > + my @section_pods = select_podsection($module, @sections); > > In scalar context, pod is joined as one scalar. > > - my $function_pods = select_podsection($mdoule, @functions); > - my $section_pods = select_podsection($mdoule, @sections); > + my $function_pods = select_podsection($module, @functions); > + my $section_pods = select_podsection($module, @sections); > > use podsection on shell >