diff options
author | joey <joey> | 2001-06-21 02:09:34 +0000 |
---|---|---|
committer | joey <joey> | 2001-06-21 02:09:34 +0000 |
commit | 23a8188b668fbbdd8e84260040e276a6ef3a879c (patch) | |
tree | bef3e0d3db9049d16dfb46f887199e0e741c94fb /Debian | |
parent | 6f79d5cba3c0d84591a8147576a494a7eccffe51 (diff) | |
download | debhelper-23a8188b668fbbdd8e84260040e276a6ef3a879c.tar.gz |
r482: * Spellpatch, Closes: #101553
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Dh_Lib.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index 92eae0c7..4beaa0dc 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -209,7 +209,7 @@ sub dirname { return $fn; } -# Pass in a number, will return true iff the current compatability level +# Pass in a number, will return true iff the current compatibility level # is less than or equal to that number. sub compat { my $num=shift; @@ -220,7 +220,7 @@ sub compat { } if ($c > $max_compat) { - error("Sorry, but $max_compat is the highest compatability level of debhelper currently supported."); + error("Sorry, but $max_compat is the highest compatibility level of debhelper currently supported."); } return ($c <= $num); @@ -235,7 +235,7 @@ sub tmpdir { return $dh{TMPDIR}; } elsif (compat(1) && $package eq $dh{MAINPACKAGE}) { - # This is for back-compatability with the debian/tmp tradition. + # This is for back-compatibility with the debian/tmp tradition. return "debian/tmp"; } else { |