aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorgogotanaka <gogotanaka@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-05 08:00:14 +0000
committergogotanaka <gogotanaka@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-03-05 08:00:14 +0000
commit744a858bd2adb01cb2aca143a1063ff3bdadfaed (patch)
treec2be60e715bf613d140c8092eaa778a211f21d5d /hash.c
parenta161bdf6f3f2f522579c9b7e19ede2a1c9790013 (diff)
downloadruby-744a858bd2adb01cb2aca143a1063ff3bdadfaed.tar.gz
* hash.c: [DOC] #delete method actually returns nil, if the key
is not found. [fix GH-844][ci skip] Patch by @ivdma git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index c4a2c0f634..6ab27e8a77 100644
--- a/hash.c
+++ b/hash.c
@@ -1057,8 +1057,8 @@ rb_hash_delete(VALUE hash, VALUE key)
* hsh.delete(key) {| key | block } -> value
*
* Deletes the key-value pair and returns the value from <i>hsh</i> whose
- * key is equal to <i>key</i>. If the key is not found, returns the
- * <em>default value</em>. If the optional code block is given and the
+ * key is equal to <i>key</i>. If the key is not found, it returns
+ * <em>nil</em>. If the optional code block is given and the
* key is not found, pass in the key and return the result of
* <i>block</i>.
*