Merge pull request #1928 from ksss/fix-typo

Hash#__update fix typo
This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-03-24 09:17:42 +09:00
+1 -1
View File
@@ -197,7 +197,7 @@ class Hash
end
def __update(h)
h.each_key{|k| self[k] = h[v]}
h.each_key{|k| self[k] = h[k]}
self
end
end