From 73bd2b70e2570279e72404a1aa8bc451ad0f90b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Quang=20Minh?= Date: Sun, 19 Apr 2020 21:38:25 +0700 Subject: [PATCH] Update VMDEBUG reference doc [ci skip] Since this commit (https://github.com/ruby/ruby/commit/9e1b06e17d27fb4ddf51e9244f205417e9c4dd5c), the VM Debug Level constant is moved from `vm_insnhelper.h` to `vm_core.h`. This PR is a super tiny update to reflect that change so that people won't waste time on searching in a wrong file. --- vm_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_dump.c b/vm_dump.c index f9edd05b99..19070d13ab 100644 --- a/vm_dump.c +++ b/vm_dump.c @@ -37,7 +37,7 @@ #include "vm_core.h" -/* see vm_insnhelper.h for the values */ +/* see vm_core.h for the values */ #ifndef VMDEBUG #define VMDEBUG 0 #endif