From 61c68927a202858ff61b5f5658d741778455459e Mon Sep 17 00:00:00 2001 From: dearblue Date: Fri, 12 Aug 2022 22:35:35 +0900 Subject: [PATCH] Match the `mrb_value` documentation to the current implementation --- include/mruby/value.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mruby/value.h b/include/mruby/value.h index a1f41f226..846452ce6 100644 --- a/include/mruby/value.h +++ b/include/mruby/value.h @@ -183,8 +183,8 @@ MRB_VTYPE_FOREACH(MRB_VTYPE_TYPEDEF) * * Actual implementation depends on configured boxing type. * - * @see mruby/boxing_no.h Default boxing representation - * @see mruby/boxing_word.h Word representation + * @see mruby/boxing_word.h Word boxing representation (Default) + * @see mruby/boxing_no.h No boxing representation * @see mruby/boxing_nan.h Boxed double representation */ typedef void mrb_value;