diff options
author | Edu Depetris <edu.depetris.00@gmail.com> | 2019-05-25 12:41:52 -0300 |
---|---|---|
committer | Edu Depetris <edu.depetris.00@gmail.com> | 2019-05-25 12:41:52 -0300 |
commit | 2c8e2b71cd00f17ef8273f4389331ddce89da0f9 (patch) | |
tree | 5dcdbd355865006704fc21a36c7412f6d2480939 | |
parent | 81d1242c77d74f6c0ca9d52971ccae2581528f1e (diff) | |
download | rails-2c8e2b71cd00f17ef8273f4389331ddce89da0f9.tar.gz rails-2c8e2b71cd00f17ef8273f4389331ddce89da0f9.tar.bz2 rails-2c8e2b71cd00f17ef8273f4389331ddce89da0f9.zip |
Change comments
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb b/activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb index 720a1f67c8..18acb1e70c 100644 --- a/activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb +++ b/activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb @@ -1,8 +1,8 @@ # frozen_string_literal: true class Hash - # Returns a new hash with all keys converted by the block operation. - # This includes the keys from the root hash and from all + # Returns a new hash with all values converted by the block operation. + # This includes the values from the root hash and from all # nested hashes and arrays. # # hash = { person: { name: 'Rob', age: '28' } } |