summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-06-02 21:47:27 +0900
committerYukihiro Matsumoto <[email protected]>2012-06-02 21:47:27 +0900
commit110cdd82e025999e07a448577cc5191aed113ac8 (patch)
treeb7333760e52a7923999823cf7acff16641a9ac71 /include
parentde133c37154fc2d433961ab900411b3c8cd23bef (diff)
downloadmruby-110cdd82e025999e07a448577cc5191aed113ac8.tar.gz
mruby-110cdd82e025999e07a448577cc5191aed113ac8.zip
naming convention consistency for hash.h
Diffstat (limited to 'include')
-rw-r--r--include/mruby/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/hash.h b/include/mruby/hash.h
index 0e002052c..01b042d46 100644
--- a/include/mruby/hash.h
+++ b/include/mruby/hash.h
@@ -25,7 +25,7 @@ mrb_value mrb_hash_new(mrb_state *mrb);
void mrb_hash_set(mrb_state *mrb, mrb_value hash, mrb_value key, mrb_value val);
mrb_value mrb_hash_get(mrb_state *mrb, mrb_value hash, mrb_value key);
-mrb_value mrb_hash_getWithDef(mrb_state *mrb, mrb_value hash, mrb_value vkey, mrb_value def);
+mrb_value mrb_hash_fetch(mrb_state *mrb, mrb_value hash, mrb_value key, mrb_value def);
mrb_value mrb_hash_delete_key(mrb_state *mrb, mrb_value hash, mrb_value key);
mrb_value mrb_hash(mrb_state *mrb, mrb_value obj);
mrb_value mrb_check_hash_type(mrb_state *mrb, mrb_value self);