[dh-make-perl] 01/01: Fix small spelling typos

Alex Muntada alexm at alexm.org
Fri Apr 14 09:05:33 UTC 2017


This is an automated email from the git hooks/post-receive script.

alexm-guest pushed a commit to branch master
in repository dh-make-perl.

commit ca86e7ada021bcbba0955f8c6262579e5a1e52d8
Author: Alex Muntada <alexm at alexm.org>
Date:   Fri Apr 14 11:04:52 2017 +0200

    Fix small spelling typos
    
    Gbp-Dch: Ignore
---
 lib/Debian/Control/Stanza.pm | 2 +-
 t/Control.t                  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/Debian/Control/Stanza.pm b/lib/Debian/Control/Stanza.pm
index 3036e14..db7419c 100644
--- a/lib/Debian/Control/Stanza.pm
+++ b/lib/Debian/Control/Stanza.pm
@@ -12,7 +12,7 @@ Debian::Control::Stanza - single stanza of Debian source package control file
 
 =head1 DESCRIPTION
 
-Debian::Control::Stanza ins the base class for
+Debian::Control::Stanza is the base class for
 L<Debian::Control::Stanza::Source> and L<Debian::Control::Stanza::Binary>
 classes.
 
diff --git a/t/Control.t b/t/Control.t
index b01ab87..b27eec6 100644
--- a/t/Control.t
+++ b/t/Control.t
@@ -113,12 +113,12 @@ Depends: libfoo-perl (>= 0.44839848),
 EOF
 
 # canonical / case-insensitive field names/accessors
-lives_ok { $s = Debian::Control::Stanza::Source->new({'Vcs_Git' => 'git://example.org'}) } 'Source constructur with Vcs_Git';
+lives_ok { $s = Debian::Control::Stanza::Source->new({'Vcs_Git' => 'git://example.org'}) } 'Source constructor with Vcs_Git';
 can_ok($s, qw(Vcs_Git));
 ok($s->Vcs_Git eq 'git://example.org', 'Vcs_Git returns correct value');
 throws_ok { $s->vCs_GiT } qr/Can't locate object method "vCs_GiT" via package "Debian::Control::Stanza::Source"/, 'No method vCs_GiT';
 
-lives_ok { $s = Debian::Control::Stanza::Source->new({'vCs-GiT' => 'git://example.net'}) } 'Source constructur with vCs-GiT';
+lives_ok { $s = Debian::Control::Stanza::Source->new({'vCs-GiT' => 'git://example.net'}) } 'Source constructor with vCs-GiT';
 can_ok($s, qw(Vcs_Git));
 ok($s->Vcs_Git eq 'git://example.net', 'Vcs_Git returns correct value');
 throws_ok { $s->vCs_GiT } qr/Can't locate object method "vCs_GiT" via package "Debian::Control::Stanza::Source"/, 'No method vCs_GiT';

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/dh-make-perl.git



More information about the Pkg-perl-cvs-commits mailing list