Skip to content

Commit

Permalink
Merge pull request #19246 from wazery/patch-1
Browse files Browse the repository at this point in the history
Doc fix [ci skip]
  • Loading branch information
robin850 committed Mar 7, 2015
2 parents 222f252 + d97b9dd commit ed1ff19
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions activesupport/lib/active_support/core_ext/hash/keys.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def transform_keys
result
end

# Destructively convert all keys using the block operations.
# Destructively converts all keys using the block operations.
# Same as transform_keys but modifies +self+.
def transform_keys!
return enum_for(:transform_keys!) unless block_given?
Expand All @@ -34,7 +34,7 @@ def stringify_keys
transform_keys(&:to_s)
end

# Destructively convert all keys to strings. Same as
# Destructively converts all keys to strings. Same as
# +stringify_keys+, but modifies +self+.
def stringify_keys!
transform_keys!(&:to_s)
Expand All @@ -52,14 +52,14 @@ def symbolize_keys
end
alias_method :to_options, :symbolize_keys

# Destructively convert all keys to symbols, as long as they respond
# Destructively converts all keys to symbols, as long as they respond
# to +to_sym+. Same as +symbolize_keys+, but modifies +self+.
def symbolize_keys!
transform_keys!{ |key| key.to_sym rescue key }
end
alias_method :to_options!, :symbolize_keys!

# Validate all keys in a hash match <tt>*valid_keys</tt>, raising
# Validates all keys in a hash match <tt>*valid_keys</tt>, raising
# ArgumentError on a mismatch.
#
# Note that keys are treated differently than HashWithIndifferentAccess,
Expand Down Expand Up @@ -89,7 +89,7 @@ def deep_transform_keys(&block)
_deep_transform_keys_in_object(self, &block)
end

# Destructively convert all keys by using the block operation.
# Destructively converts all keys by using the block operation.
# This includes the keys from the root hash and from all
# nested hashes and arrays.
def deep_transform_keys!(&block)
Expand All @@ -108,7 +108,7 @@ def deep_stringify_keys
deep_transform_keys(&:to_s)
end

# Destructively convert all keys to strings.
# Destructively converts all keys to strings.
# This includes the keys from the root hash and from all
# nested hashes and arrays.
def deep_stringify_keys!
Expand All @@ -127,7 +127,7 @@ def deep_symbolize_keys
deep_transform_keys{ |key| key.to_sym rescue key }
end

# Destructively convert all keys to symbols, as long as they respond
# Destructively converts all keys to symbols, as long as they respond
# to +to_sym+. This includes the keys from the root hash and from all
# nested hashes and arrays.
def deep_symbolize_keys!
Expand Down

0 comments on commit ed1ff19

Please sign in to comment.