diff options
author | Guillem Jover <guillem@debian.org> | 2019-11-06 02:07:17 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2019-11-26 02:42:45 +0100 |
commit | 7ab69d4acbdabd3af0f8c27801527750505c1a11 (patch) | |
tree | eccb3cbbb4cbf993c29832bfcca8bc1bf1b77f58 /scripts/Dpkg/Source | |
parent | b287a80263dd4e45bb82b7e6bad76faeb47358d4 (diff) | |
download | dpkg-7ab69d4acbdabd3af0f8c27801527750505c1a11.tar.gz |
Dpkg: Say class instead of object when appropriate
These were referring to the type and not the instance, which makes
using the incorrect nomenclature confusing.
Diffstat (limited to 'scripts/Dpkg/Source')
-rw-r--r-- | scripts/Dpkg/Source/Format.pm | 2 | ||||
-rw-r--r-- | scripts/Dpkg/Source/Package.pm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Dpkg/Source/Format.pm b/scripts/Dpkg/Source/Format.pm index 55172a2ef..41596a233 100644 --- a/scripts/Dpkg/Source/Format.pm +++ b/scripts/Dpkg/Source/Format.pm @@ -24,7 +24,7 @@ Dpkg::Source::Format - manipulate debian/source/format files =head1 DESCRIPTION -This module provides an object that can manipulate Debian source +This module provides a class that can manipulate Debian source package F<debian/source/format> files. =cut diff --git a/scripts/Dpkg/Source/Package.pm b/scripts/Dpkg/Source/Package.pm index d38e228e5..337000cb8 100644 --- a/scripts/Dpkg/Source/Package.pm +++ b/scripts/Dpkg/Source/Package.pm @@ -24,7 +24,7 @@ Dpkg::Source::Package - manipulate Debian source packages =head1 DESCRIPTION -This module provides an object that can manipulate Debian source +This module provides a class that can manipulate Debian source packages. While it supports both the extraction and the creation of source packages, the only API that is officially supported is the one that supports the extraction of the source package. @@ -204,7 +204,7 @@ source package after its extraction. =cut -# Object methods +# Class methods sub new { my ($this, %args) = @_; my $class = ref($this) || $this; |