aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-05-26 01:15:52 +0900
committerGitHub <noreply@github.com>2019-05-26 01:15:52 +0900
commit4a86464cbae007f9bf37189bd265eac8415570c5 (patch)
tree5dcdbd355865006704fc21a36c7412f6d2480939
parent81d1242c77d74f6c0ca9d52971ccae2581528f1e (diff)
parent2c8e2b71cd00f17ef8273f4389331ddce89da0f9 (diff)
downloadrails-4a86464cbae007f9bf37189bd265eac8415570c5.tar.gz
rails-4a86464cbae007f9bf37189bd265eac8415570c5.tar.bz2
rails-4a86464cbae007f9bf37189bd265eac8415570c5.zip
Merge pull request #36343 from edudepetris/update_comments
Change comments [ci skip]
-rw-r--r--activesupport/lib/active_support/core_ext/hash/deep_transform_values.rb4
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' } }