summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-01-28 09:20:22 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-01-28 09:20:22 +0000
commit6878e557e4af93d9c9d42c603e12c96c2f3963b3 (patch)
treeda7df7c00830ff10c39f0394849c68a41c99dd37 /eval.c
parent09a2746e79d783e3163c98d6f4609a6d305f9cdc (diff)
* eval.c (umethod_bind): typo fix(rklass -> klass).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index e6e5ab6753..ca7c936f75 100644
--- a/eval.c
+++ b/eval.c
@@ -6784,7 +6784,7 @@ umethod_bind(method, recv)
method = Data_Make_Struct(rb_cMethod,struct METHOD,bm_mark,free,bound);
*bound = *data;
bound->recv = recv;
- bound->rklass = CLASS_OF(recv);
+ bound->klass = CLASS_OF(recv);
return method;
}