From 0d2ca334047f11a92215025b43a1f9dcdd9276fb Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Sat, 30 Dec 2023 22:13:24 -0500 Subject: [PATCH] [DOC] Fix link to untrace_var from trace_var --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eval.c b/eval.c index 15b6567aff06b5..8a636cc5334114 100644 --- a/eval.c +++ b/eval.c @@ -2022,7 +2022,7 @@ f_global_variables(VALUE _) * +Proc+ object) or block is executed whenever the variable * is assigned. The block or +Proc+ object receives the * variable's new value as a parameter. Also see - * Kernel::untrace_var. + * #untrace_var. * * trace_var :$_, proc {|v| puts "$_ is now '#{v}'" } * $_ = "hello"