summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-11-17 10:14:58 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-11-17 10:14:58 +0000
commit4cdaeff7d67594a60bccc7882d3197ee0420932d (patch)
tree86641bb1409bf85d6d748725e4906a6c4528a011 /hv.c
parent50acdf951a03f778010b5632532ec99bfa7c4f6a (diff)
downloadperl-4cdaeff7d67594a60bccc7882d3197ee0420932d.tar.gz
Fix a couple of typos.
p4raw-id: //depot/perl@23508
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index d3b86edd41..2d04dda6ac 100644
--- a/hv.c
+++ b/hv.c
@@ -1496,7 +1496,7 @@ Clears any placeholders from a hash. If a restricted hash has any of its keys
marked as readonly and the key is subsequently deleted, the key is not actually
deleted but is marked by assigning it a value of &PL_sv_placeholder. This tags
it so it will be ignored by future operations such as iterating over the hash,
-but will still allow the hash to have a value reaasigned to the key at some
+but will still allow the hash to have a value reassigned to the key at some
future point. This function clears any such placeholder keys from the hash.
See Hash::Util::lock_keys() for an example of its use.