diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-04-09 22:07:50 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-09 22:07:50 +0900 |
| commit | f7493b73cb5307fbbaddcfca5ae9541775bfc00d (patch) | |
| tree | f7c743d7889e08423752289c1df8e5d99678b68f /include | |
| parent | c2c37e1451d258c13ff160e0fd5f48acfcb1c52f (diff) | |
| parent | d8622fc68b88102cbf358b524913c823af31a1b0 (diff) | |
| download | mruby-f7493b73cb5307fbbaddcfca5ae9541775bfc00d.tar.gz mruby-f7493b73cb5307fbbaddcfca5ae9541775bfc00d.zip | |
Merge pull request #5400 from jbampton/fix-spelling
chore: fix spelling
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/irep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby/irep.h b/include/mruby/irep.h index d2ea202db..6a3b4bd10 100644 --- a/include/mruby/irep.h +++ b/include/mruby/irep.h @@ -46,8 +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 hander. Includes this. */ - uint8_t end[4]; /* The endpoint address that matches the hander. 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. */ }; |
