summaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-12 15:31:43 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-12 15:31:43 +0000
commit8b5635c755b0c2250ea9fc6d1e2ce6ef1b11b7a7 (patch)
treeaf0195ef3fda8a7d120a82e91881747800e14a0e /vm_method.c
parent1dae5678cdea21cf36d307e3d249608227e4ff25 (diff)
downloadruby-8b5635c755b0c2250ea9fc6d1e2ce6ef1b11b7a7.tar.gz
ruby-8b5635c755b0c2250ea9fc6d1e2ce6ef1b11b7a7.tar.xz
ruby-8b5635c755b0c2250ea9fc6d1e2ce6ef1b11b7a7.zip
* vm_method.c (remove_method): typo fixed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_method.c b/vm_method.c
index d1a356a0e..8764a5672 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -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;