summaryrefslogtreecommitdiff
path: root/lib/Digest.pm
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-01-20 17:48:51 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-01-20 17:48:51 +0000
commit67859229b2af3ba90e55d42060c363e9c83849bf (patch)
tree7099c452a8b6dc7728977be82359fc6f173db220 /lib/Digest.pm
parent2c28e92fc113ea28fd1822b2d63d3c1bfedbac8f (diff)
downloadperl-67859229b2af3ba90e55d42060c363e9c83849bf.tar.gz
Upgrade to Digest 1.02.
p4raw-id: //depot/perl@18523
Diffstat (limited to 'lib/Digest.pm')
-rw-r--r--lib/Digest.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Digest.pm b/lib/Digest.pm
index 4ad93ff40a..8ebf61a487 100644
--- a/lib/Digest.pm
+++ b/lib/Digest.pm
@@ -3,7 +3,7 @@ package Digest;
use strict;
use vars qw($VERSION %MMAP $AUTOLOAD);
-$VERSION = "1.01";
+$VERSION = "1.02";
%MMAP = (
"SHA-1" => "Digest::SHA1",
@@ -124,7 +124,7 @@ load the right module on first use. The second form allow you to use
algorithm names which contains letters which are not legal perl
identifiers, e.g. "SHA-1".
-If new() is called as a instance method (i.e. $ctx->new) it will just
+If new() is called as an instance method (i.e. $ctx->new) it will just
reset the state the object to the state of a newly created object. No
new object is created in this case, and the return value is the
reference to the object (i.e. $ctx).