# New Ticket Created by (Peter J. Acklam) # Please include the string: [perl #81798] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81798 > --- cpan/Digest-SHA/shasum | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpan/Digest-SHA/shasum b/cpan/Digest-SHA/shasum index 13d4ca3..40bb756 100644 --- a/cpan/Digest-SHA/shasum +++ b/cpan/Digest-SHA/shasum @@ -56,7 +56,7 @@ Or, if you want to use SHA-256 instead of the default SHA-1, simply say: perl -e "print qq(abc)" | shasum -a 256 Since I<shasum> uses the same interface employed by the familiar -I<sha1sum> program (and its somewhat outmoded anscestor I<md5sum>), +I<sha1sum> program (and its somewhat outmoded ancestor I<md5sum>), you can install this script as a convenient drop-in replacement. =head1 AUTHOR @@ -168,7 +168,7 @@ usage(1, "shasum: --status option used only when verifying checksums\n") if $status && !$check; - ## Default to SHA-1 unless overriden by command line option + ## Default to SHA-1 unless overridden by command line option $alg = 1 unless defined $alg; grep { $_ == $alg } (1, 224, 256, 384, 512) @@ -185,7 +185,7 @@ if ($version) { ## Try to figure out if the OS is DOS-like. If it is, ## default to binary mode when reading files, unless - ## explicitly overriden by command line "--text" or + ## explicitly overridden by command line "--text" or ## "--portable" options. my $isDOSish = ($^O =~ /^(MSWin\d\d|os2|dos|mint|cygwin)$/); -- 1.7.3.3