From 01b03d852f1af9ddea8ca52267bfcf61bff902f9 Mon Sep 17 00:00:00 2001 From: Lanza Date: Thu, 30 Mar 2023 06:57:33 +0800 Subject: [PATCH] fix: wrong comment for ```mrb_debug_get_filename``` --- include/mruby/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mruby/debug.h b/include/mruby/debug.h index 565e18344..e42a9124d 100644 --- a/include/mruby/debug.h +++ b/include/mruby/debug.h @@ -46,7 +46,7 @@ typedef struct mrb_irep_debug_info { } mrb_irep_debug_info; /* - * get line from irep's debug info and program counter + * get filename from irep's debug info and program counter * @return returns NULL if not found */ MRB_API const char *mrb_debug_get_filename(mrb_state *mrb, const mrb_irep *irep, uint32_t pc);