aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-15 13:10:08 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-15 13:10:08 +0530
commit7cd88840939cac913899fa9a11281d78388672ad (patch)
tree6e1306ed8e000d5c9c63f418830331aefbed418a /activesupport/lib/active_support
parent8972829a91c6ff1b6653399e49cf82a682b2b0e9 (diff)
downloadrails-7cd88840939cac913899fa9a11281d78388672ad.tar.gz
rails-7cd88840939cac913899fa9a11281d78388672ad.tar.bz2
rails-7cd88840939cac913899fa9a11281d78388672ad.zip
missing dot [ci skip]
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/hash/deep_merge.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/deep_merge.rb b/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
index 2fa397bcd0..023bf68a87 100644
--- a/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
+++ b/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
@@ -10,7 +10,7 @@ class Hash
dup.deep_merge!(other_hash)
end
- # Same as +deep_merge+, but modifies +self+
+ # Same as +deep_merge+, but modifies +self+.
def deep_merge!(other_hash)
other_hash.each_pair do |k,v|
tv = self[k]