From 332f4938cf3adbff8f15b647767dc660583a5bef Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 26 Mar 2024 11:21:31 -0700 Subject: [PATCH] [DOC] Fix a description about rb_exec_recursive_outer It gives true/TRUE (int) instead of Qtrue (VALUE). --- thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thread.c b/thread.c index e672172a4d..9400c32adc 100644 --- a/thread.c +++ b/thread.c @@ -5297,7 +5297,7 @@ rb_exec_recursive_paired(VALUE (*func) (VALUE, VALUE, int), VALUE obj, VALUE pai /* * If recursion is detected on the current method and obj, the outermost - * func will be called with (obj, arg, Qtrue). All inner func will be + * func will be called with (obj, arg, true). All inner func will be * short-circuited using throw. */