diff --git a/ChangeLog b/ChangeLog index d737c41874..c55f4554d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Nov 3 11:43:00 2012 Zachary Scott + + * hash.c (rb_hash_delete): Correct grammar + Patch by Glenn Oppegard + [Fixes #208 Github] + Sat Nov 3 11:28:28 2012 Narihiro Nakamura * NEWS: add a news about GC::Profiler.raw_data. diff --git a/hash.c b/hash.c index ea9dd87d8d..b8ba4a88b6 100644 --- a/hash.c +++ b/hash.c @@ -815,8 +815,8 @@ rb_hash_delete_key(VALUE hash, VALUE key) * hsh.delete(key) -> value * hsh.delete(key) {| key | block } -> value * - * Deletes and returns a key-value pair from hsh whose key is - * equal to key. If the key is not found, returns the + * Deletes the key-value pair and returns the value from hsh whose + * key is equal to key. If the key is not found, returns the * default value. If the optional code block is given and the * key is not found, pass in the key and return the result of * block.