This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=1fa3e4360b4ebadef4f0f486fb4a029e6bbdc705 commit 1fa3e4360b4ebadef4f0f486fb4a029e6bbdc705 Author: Guillem Jover <[email protected]> AuthorDate: Sat Oct 13 10:00:39 2018 +0200 Dpkg::Deps::Simple: Fix POD signature for new constructor --- debian/changelog | 1 + scripts/Dpkg/Deps/Simple.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 1178f6240..14970a692 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,7 @@ dpkg (1.19.3) UNRELEASED; urgency=medium - dpkg-architecture(1): Add reference to the TERMS section in the VARIABLES section. Prompted by Axel Beckert <[email protected]>. - Fix POD for Dpkg::Interface::Storable derived method implementations. + - Dpkg::Deps::Simple(3): Fix POD signature for new constructor. * Code internals: - dpkg-maintscript-helper: Use an explicit escape instead of a literal backslash. diff --git a/scripts/Dpkg/Deps/Simple.pm b/scripts/Dpkg/Deps/Simple.pm index 4fa1ae8d5..efe635cec 100644 --- a/scripts/Dpkg/Deps/Simple.pm +++ b/scripts/Dpkg/Deps/Simple.pm @@ -88,7 +88,7 @@ use Dpkg::Gettext; use parent qw(Dpkg::Interface::Storable); -=item $dep = Dpkg::Deps::Simple->new(%opts); +=item $dep = Dpkg::Deps::Simple->new([$dep[, %opts]]); Creates a new object. Some options can be set through %opts: -- Dpkg.Org's dpkg

