irep.h: reformat comments

This commit is contained in:
Yukihiro "Matz" Matsumoto
2024-10-28 10:32:38 +09:00
parent 6ad6b6c6c1
commit 2436b32f1f
+2 -4
View File
@@ -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. */
};