summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-hash-ext/mrblib/hash.rb
diff options
context:
space:
mode:
authortakahashim <[email protected]>2015-09-16 02:57:41 +0900
committertakahashim <[email protected]>2015-09-16 02:57:41 +0900
commitb88ca625ab44a063c9b105f06789446f791c8b3e (patch)
tree87238bbad6dda8b0d5681c95307bd2ad245ce6ee /mrbgems/mruby-hash-ext/mrblib/hash.rb
parente91b7d640c8ac6af08f4571e71bb867b62fc4445 (diff)
downloadmruby-b88ca625ab44a063c9b105f06789446f791c8b3e.tar.gz
mruby-b88ca625ab44a063c9b105f06789446f791c8b3e.zip
fix block variable in Hash#fetch
Diffstat (limited to 'mrbgems/mruby-hash-ext/mrblib/hash.rb')
-rw-r--r--mrbgems/mruby-hash-ext/mrblib/hash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-hash-ext/mrblib/hash.rb b/mrbgems/mruby-hash-ext/mrblib/hash.rb
index c970b9d02..5056d0720 100644
--- a/mrbgems/mruby-hash-ext/mrblib/hash.rb
+++ b/mrbgems/mruby-hash-ext/mrblib/hash.rb
@@ -126,7 +126,7 @@ class Hash
def fetch(key, none=NONE, &block)
unless self.key?(key)
if block
- block.call
+ block.call(key)
elsif none != NONE
none
else