diff options
author | joey <joey> | 1999-12-06 21:49:05 +0000 |
---|---|---|
committer | joey <joey> | 1999-12-06 21:49:05 +0000 |
commit | f19b0265485731938ffcdbb94d42207cee55b810 (patch) | |
tree | 276de9c067a6fecc8977ac081b492f16853ab58d /dh_undocumented | |
parent | 44af186fb4ef8f5d6620355006250d4539bbe978 (diff) | |
download | debhelper-f19b0265485731938ffcdbb94d42207cee55b810.tar.gz |
r325: * Corrected mispellings, Closes: #52013
Diffstat (limited to 'dh_undocumented')
-rwxr-xr-x | dh_undocumented | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dh_undocumented b/dh_undocumented index 6a30f722..b1b7b16c 100755 --- a/dh_undocumented +++ b/dh_undocumented @@ -24,14 +24,14 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { } foreach $file (@undoc) { - $file=~s/.gz$//; # .gz extention is optional in input. + $file=~s/.gz$//; # .gz extension is optional in input. # Determine what directory the file belongs in, # /usr/share/man, or /usr/X11R6/man, and how the link to # the undocuemtned.7 man page will look. ($section)=$file=~m/^.*\.(\d)/; if (!$section) { - error("\"$file\" does not have an extention."); + error("\"$file\" does not have an extension."); } if ($file=~/.*\.\dx/) { $dir="usr/X11R6/man/man$section"; |