r35061 - in /trunk/dh-make-perl/lib: Debian/Control.pm Debian/Control/FromCPAN.pm Debian/Control/Stanza.pm Debian/Control/Stanza/Binary.pm Debian/Control/Stanza/Source.pm Debian/Dependency.pm DhMakePerl.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat May 9 01:12:17 UTC 2009


Author: gregoa
Date: Sat May  9 01:12:12 2009
New Revision: 35061

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=35061
Log:
fix some POD typos

Modified:
    trunk/dh-make-perl/lib/Debian/Control.pm
    trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm
    trunk/dh-make-perl/lib/Debian/Control/Stanza.pm
    trunk/dh-make-perl/lib/Debian/Control/Stanza/Binary.pm
    trunk/dh-make-perl/lib/Debian/Control/Stanza/Source.pm
    trunk/dh-make-perl/lib/Debian/Dependency.pm
    trunk/dh-make-perl/lib/DhMakePerl.pm

Modified: trunk/dh-make-perl/lib/Debian/Control.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control.pm Sat May  9 01:12:12 2009
@@ -4,7 +4,7 @@
 
 =head1 SYNOPSIS
 
-    my $c = Debian::Control->new();         # construct anew
+    my $c = Debian::Control->new();         # construct a new
     $c->read($file);                        # parse debian/control file
     $c->write($file);                       # write to file
     print $c->source->Package;

Modified: trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm Sat May  9 01:12:12 2009
@@ -99,7 +99,7 @@
 
 =item parse_meta_dep_list( src, apt_depends, missing )
 
-Convert the given CPAN META dependency list (I<src>, shashref with module names
+Convert the given CPAN META dependency list (I<src>, hashref with module names
 for keys and versions for values) into an instance of the
 L<Debian::Dependencies> class. Supplied I<apt_depends> is used for finding
 Debian packages corresponfing to CPAN modules. Modules with no corresponding

Modified: trunk/dh-make-perl/lib/Debian/Control/Stanza.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control/Stanza.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control/Stanza.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control/Stanza.pm Sat May  9 01:12:12 2009
@@ -6,7 +6,7 @@
 
     package Binary;
     use base 'Debian::Control::Stanza';
-    use constant fields => qw( Pakcage Depends Conflicts );
+    use constant fields => qw( Package Depends Conflicts );
 
     1;
 
@@ -105,7 +105,7 @@
 
 =item is_dependency_list($field)
 
-Returns true is I<$field> contains a list of dependencies. By default returns true for the following fields:
+Returns true if I<$field> contains a list of dependencies. By default returns true for the following fields:
 
 =over
 

Modified: trunk/dh-make-perl/lib/Debian/Control/Stanza/Binary.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control/Stanza/Binary.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control/Stanza/Binary.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control/Stanza/Binary.pm Sat May  9 01:12:12 2009
@@ -4,7 +4,7 @@
 
 =head1 SYNOPSIS
 
-    my $src = Debian::Control::Stanca::Binary->new(\%data);
+    my $src = Debian::Control::Stanza::Binary->new(\%data);
     print $src;                         # auto-stringification
     print $src->Depends;                # Debian::Dependencies object
 

Modified: trunk/dh-make-perl/lib/Debian/Control/Stanza/Source.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control/Stanza/Source.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control/Stanza/Source.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control/Stanza/Source.pm Sat May  9 01:12:12 2009
@@ -4,7 +4,7 @@
 
 =head1 SYNOPSIS
 
-    my $src = Debian::Control::Stanca::Source->new(\%data);
+    my $src = Debian::Control::Stanza::Source->new(\%data);
     print $src;                         # auto-stringification
     print $src->Build_Depends;          # Debian::Dependencies object
 

Modified: trunk/dh-make-perl/lib/Debian/Dependency.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Dependency.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Dependency.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Dependency.pm Sat May  9 01:12:12 2009
@@ -227,7 +227,7 @@
 Returns true if I<$dep> states a dependency that is already covered by this
 instance. In other words, if this method returns true, any package satisfying
 the dependency of this instance will also satisfy I<$dep> ($dep is redundant in
-dependency lsits where this instance is already present).
+dependency lists where this instance is already present).
 
 I<$dep> can be either an instance of the L<Debian::Dependency> class, or a
 plain string.

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=35061&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Sat May  9 01:12:12 2009
@@ -1271,7 +1271,7 @@
 
 =item drop_quilt( $maindir, $control )
 
-removes quilt from F<debian/rules> and F<deian/control>. Expects that
+removes quilt from F<debian/rules> and F<debian/control>. Expects that
 L<|add_quilt> was used to add quilt to F<debian/rules>.
 
 If F<debian/README.source> exists, references to quilt are removed from it (and




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