aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-21 07:13:11 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-21 07:13:11 +0000
commit4af333b99e7945bdad10c69413601354dfc16bb9 (patch)
tree9a408be5e0c1bc9828d291a983a4230b76b32a4f /hash.c
parent95fb25c9b2cfd0205319c56dd783ec75b53f0909 (diff)
downloadruby-4af333b99e7945bdad10c69413601354dfc16bb9.tar.gz
Add missing word in transform_values methods description
Explicitly says that the methods return a new hash rather than just stating it return a new something we don't know. [ci skip] [Fix GH-1619] Author: Nicolas Cavigneaux <nico@bounga.org> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58830 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 d616e8e90e..b1a1e6a3e4 100644
--- a/hash.c
+++ b/hash.c
@@ -1809,7 +1809,7 @@ transform_values_i(VALUE key, VALUE value, VALUE result)
* hsh.transform_values {|value| block } -> hsh
* hsh.transform_values -> an_enumerator
*
- * Return a new with the results of running block once for every value.
+ * Return a new hash with the results of running block once for every value.
* This method does not change the keys.
*
* h = { a: 1, b: 2, c: 3 }
@@ -1839,7 +1839,7 @@ rb_hash_transform_values(VALUE hash)
* hsh.transform_values! {|value| block } -> hsh
* hsh.transform_values! -> an_enumerator
*
- * Return a new with the results of running block once for every value.
+ * Return a new hash with the results of running block once for every value.
* This method does not change the keys.
*
* h = { a: 1, b: 2, c: 3 }