Commit 2981b4e3 authored by ksss's avatar ksss

Hash#__update fix typo

It's called by create Hash of over 126 keys
parent 75eed54b
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment