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

guillem pushed a commit to branch main
in repository dpkg.

View the commit online:
https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=94abc18c8310a40415384bd42fc8cdae865f168b

commit 94abc18c8310a40415384bd42fc8cdae865f168b
Author: Guillem Jover <[email protected]>
AuthorDate: Thu Oct 19 01:19:40 2023 +0200

    doc: Use name() POD syntax instead of a bare function name
    
    The POD parsers know what to do automatically for this kind of syntax.
---
 scripts/Dpkg/Changelog.pm            | 2 +-
 scripts/Dpkg/Control/HashCore.pm     | 2 +-
 scripts/Dpkg/Control/HashCore/Tie.pm | 2 +-
 scripts/Dpkg/Deps/AND.pm             | 2 +-
 scripts/Dpkg/Deps/OR.pm              | 2 +-
 scripts/Dpkg/Deps/Union.pm           | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/scripts/Dpkg/Changelog.pm b/scripts/Dpkg/Changelog.pm
index 8a925c5ec..4a5631183 100644
--- a/scripts/Dpkg/Changelog.pm
+++ b/scripts/Dpkg/Changelog.pm
@@ -24,7 +24,7 @@ Dpkg::Changelog - base class to implement a changelog parser
 
 Dpkg::Changelog is a class representing a changelog file
 as an array of changelog entries (Dpkg::Changelog::Entry).
-By deriving this class and implementing its parse method, you
+By deriving this class and implementing its parse() method, you
 add the ability to fill this object with changelog entries.
 
 =cut
diff --git a/scripts/Dpkg/Control/HashCore.pm b/scripts/Dpkg/Control/HashCore.pm
index dd6ac80e9..f66a088ee 100644
--- a/scripts/Dpkg/Control/HashCore.pm
+++ b/scripts/Dpkg/Control/HashCore.pm
@@ -24,7 +24,7 @@ Dpkg::Control::HashCore - parse and manipulate a stanza of 
deb822 fields
 
 The Dpkg::Control::Hash class is a hash-like representation of a set of
 RFC822-like fields. The fields names are case insensitive and are always
-capitalized the same when output (see field_capitalize function in
+capitalized the same when output (see field_capitalize() function in
 Dpkg::Control::Fields).
 The order in which fields have been set is remembered and is used
 to be able to dump back the same content. The output order can also be
diff --git a/scripts/Dpkg/Control/HashCore/Tie.pm 
b/scripts/Dpkg/Control/HashCore/Tie.pm
index 7b75e7d42..c7ec999b6 100644
--- a/scripts/Dpkg/Control/HashCore/Tie.pm
+++ b/scripts/Dpkg/Control/HashCore/Tie.pm
@@ -24,7 +24,7 @@ Dpkg::Control::HashCore::Tie - ties a Dpkg::Control::Hash 
object
 
 This module provides a class that is used to tie a hash.
 It implements hash-like functions by normalizing the name of fields received
-in keys (using Dpkg::Control::Fields::field_capitalize).
+in keys (using Dpkg::Control::Fields::field_capitalize()).
 It also stores the order in which fields have been added in order to be able
 to dump them in the same order.
 But the order information is stored in a parent object of type Dpkg::Control.
diff --git a/scripts/Dpkg/Deps/AND.pm b/scripts/Dpkg/Deps/AND.pm
index 49bef7e41..7c7ed6474 100644
--- a/scripts/Dpkg/Deps/AND.pm
+++ b/scripts/Dpkg/Deps/AND.pm
@@ -45,7 +45,7 @@ use parent qw(Dpkg::Deps::Multiple);
 
 =item $dep->output([$fh])
 
-The output method uses ", " to join the list of sub-dependencies.
+The output() method uses ", " to join the list of sub-dependencies.
 
 =cut
 
diff --git a/scripts/Dpkg/Deps/OR.pm b/scripts/Dpkg/Deps/OR.pm
index 2a0d32da0..a65398260 100644
--- a/scripts/Dpkg/Deps/OR.pm
+++ b/scripts/Dpkg/Deps/OR.pm
@@ -45,7 +45,7 @@ use parent qw(Dpkg::Deps::Multiple);
 
 =item $dep->output([$fh])
 
-The output method uses " | " to join the list of sub-dependencies.
+The output() method uses " | " to join the list of sub-dependencies.
 
 =cut
 
diff --git a/scripts/Dpkg/Deps/Union.pm b/scripts/Dpkg/Deps/Union.pm
index cc480eb1b..5b18f106e 100644
--- a/scripts/Dpkg/Deps/Union.pm
+++ b/scripts/Dpkg/Deps/Union.pm
@@ -45,7 +45,7 @@ use parent qw(Dpkg::Deps::Multiple);
 
 =item $dep->output([$fh])
 
-The output method uses ", " to join the list of relationships.
+The output() method uses ", " to join the list of relationships.
 
 =cut
 

-- 
Dpkg.Org's dpkg

Reply via email to