summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan O'Dea <bod@debian.org>2021-08-08 14:52:09 +1000
committerBrendan O'Dea <bod@debian.org>2021-08-08 14:52:09 +1000
commit7ce96e69ad88d5d5c1d6c9c2a74dedc6045dae3d (patch)
tree5526e20541737a860add73c79536290a7962a69e
parent06b1a7db37971549e2ecf00c887efebe1f35c7c6 (diff)
downloadhelp2man-7ce96e69ad88d5d5c1d6c9c2a74dedc6045dae3d.tar.gz
Fix typo in comment and update some URLs to use https
-rw-r--r--debian/changelog3
-rwxr-xr-xhelp2man.PL10
2 files changed, 7 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index ec010fd..908d97b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,8 +2,9 @@ help2man (1.48.4) unstable; urgency=medium
* Drop dependency on dpkg/install-info (not required since policy
3.9.5.0).
+ * Fix typo in comment and update some URLs to use https.
- -- Brendan O'Dea <bod@debian.org> Sun, 11 Apr 2021 13:28:56 +1000
+ -- Brendan O'Dea <bod@debian.org> Sun, 08 Aug 2021 14:51:05 +1000
help2man (1.48.3) unstable; urgency=medium
diff --git a/help2man.PL b/help2man.PL
index e9f887a..63007e5 100755
--- a/help2man.PL
+++ b/help2man.PL
@@ -76,10 +76,10 @@ print OUT <<'!NO!SUBS!';
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
-# along with this program; if not, see <http://www.gnu.org/licenses/>.
+# along with this program; if not, see <https://www.gnu.org/licenses/>.
# Written by Brendan O'Dea <bod@debian.org>
-# Available from ftp://ftp.gnu.org/gnu/help2man/
+# Available from https://ftp.gnu.org/gnu/help2man/
use 5.008;
use strict;
@@ -369,8 +369,8 @@ my $help_text = get_option_value $ARGV[0], $help_option;
$version_text ||= get_option_value $ARGV[0], $version_option;
# By default the generated manual pages will include the current date. This may
-# however be overriden by setting the environment variable $SOURCE_DATE_EPOCH to
-# an integer value of the seconds since the UNIX epoch. This is primarily
+# however be overridden by setting the environment variable $SOURCE_DATE_EPOCH
+# to an integer value of the seconds since the UNIX epoch. This is primarily
# intended to support reproducible builds (wiki.debian.org/ReproducibleBuilds)
# and will additionally ensure that the output date string is UTC.
my $epoch_secs = time;
@@ -882,7 +882,7 @@ sub convert_option
}
# Insert spacing escape characters \, and \/ before and after italic text. See
-# http://www.gnu.org/software/groff/manual/html_node/Ligatures-and-Kerning.html
+# https://www.gnu.org/software/groff/manual/html_node/Ligatures-and-Kerning.html
sub fix_italic_spacing
{
local $_ = shift;