summaryrefslogtreecommitdiff
path: root/vm_method.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_method.c b/vm_method.c
index f2d2cd3c75..014840d7d6 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -672,9 +672,9 @@ static VALUE
rb_mod_method_defined(VALUE mod, VALUE mid)
{
if (!rb_method_boundp(mod, rb_to_id(mid), 1)) {
- return FALSE;
+ return Qfalse;
}
- return TRUE;
+ return Qtrue;
}