From 2436b32f1f6088652e32e4f51639b67a2229c5f0 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Mon, 28 Oct 2024 10:32:38 +0900 Subject: [PATCH] irep.h: reformat comments --- include/mruby/irep.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/mruby/irep.h b/include/mruby/irep.h index fb5690aa6..3fd3bdb4f 100644 --- a/include/mruby/irep.h +++ b/include/mruby/irep.h @@ -46,10 +46,8 @@ enum mrb_catch_type { struct mrb_irep_catch_handler { uint8_t type; /* enum mrb_catch_type */ - uint8_t - begin[4]; /* The starting address to match the handler. Includes this. */ - uint8_t end[4]; /* The endpoint address that matches the handler. Not Includes - this. */ + uint8_t begin[4]; /* The starting address to match the handler. Includes this. */ + uint8_t end[4]; /* The endpoint address that matches the handler. Not Includes this. */ uint8_t target[4]; /* The address to jump to if a match is made. */ };