1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_method.c (remove_method): typo fixed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-09-12 15:31:43 +00:00
parent 2fcdd7e080
commit a5971a1282

View file

@ -369,7 +369,7 @@ rb_method_entry(VALUE klass, ID id)
}
static void
remove_method_id(VALUE klass, ID mid)
remove_method(VALUE klass, ID mid)
{
st_data_t data;
rb_method_entry_t *me = 0;