diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-08-08 15:12:42 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 16:21:34 +0900 |
| commit | 500f721f7080e79c2e41e306cc1d94471c10f173 (patch) | |
| tree | b86c37fc3ef84a6710e786807ca6b993b74987a3 /src/codedump.c | |
| parent | cb89e1f0d9d9f05e53705d228b69decbc428a650 (diff) | |
| download | mruby-500f721f7080e79c2e41e306cc1d94471c10f173.tar.gz mruby-500f721f7080e79c2e41e306cc1d94471c10f173.zip | |
Fix typo `_hander` -> `_handler`.
Diffstat (limited to 'src/codedump.c')
| -rw-r--r-- | src/codedump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codedump.c b/src/codedump.c index 095028a39..389ed3c8f 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -83,7 +83,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep) if (irep->clen > 0) { int i = irep->clen; - const struct mrb_irep_catch_hander *e = mrb_irep_catch_handler_table(irep); + const struct mrb_irep_catch_handler *e = mrb_irep_catch_handler_table(irep); for (; i > 0; i --, e ++) { int begin = bin_to_uint16(e->begin); |
