typos in Hash::Util documentation
Slaven Rezic [Wed, 28 Aug 2002 17:08:50 +0000 (19:08 +0200)]
Message-Id: <200208281508.g7SF8o9Z015197@vran.herceg.de>

p4raw-id: //depot/perl@17812

lib/Hash/Util.pm

index f6dcd7e..d5e0a16 100644 (file)
@@ -17,7 +17,7 @@ Hash::Util - A selection of general-utility hash subroutines
 
 =head1 SYNOPSIS
 
-  use Hash::Util qw(lock_keys   unlock_keys 
+  use Hash::Util qw(lock_keys   unlock_keys
                     lock_value  unlock_value
                     lock_hash   unlock_hash);
 
@@ -62,7 +62,7 @@ given it restricts it to its current keyset.  No more keys can be
 added.  delete() and exists() will still work, but it does not effect
 the set of allowed keys.
 
-  unlock_keys(%hash;)
+  unlock_keys(%hash);
 
 Removes the restriction on the %hash's keyset.
 
@@ -108,8 +108,8 @@ sub unlock_keys (\%) {
 
 =item unlock_value
 
-  lock_key  (%hash, $key);
-  unlock_key(%hash, $key);
+  lock_value  (%hash, $key);
+  unlock_value(%hash, $key);
 
 Locks and unlocks an individual key of a hash.  The value of a locked
 key cannot be changed.