diff options
| author | John Bampton <[email protected]> | 2021-05-04 10:55:43 +1000 |
|---|---|---|
| committer | John Bampton <[email protected]> | 2021-06-16 08:34:54 +1000 |
| commit | dab5502e8a16d34d29adee6f7f9cb4f4ae0dfd68 (patch) | |
| tree | 5f120f199cdf21986ca8af4dde364cf7156ebbc7 /mrbgems/mruby-error | |
| parent | 50b6fafddf2fa37727e812fbda8b7a61a8ca1ca1 (diff) | |
| download | mruby-dab5502e8a16d34d29adee6f7f9cb4f4ae0dfd68.tar.gz mruby-dab5502e8a16d34d29adee6f7f9cb4f4ae0dfd68.zip | |
Run pre-commit with GitHub Actions
Running pre-commit with GitHub Actions now gives us more tests and coverage
Remove duplicate GitHub Actions for merge conflicts and trailing whitespace
Remove duplicate checks for markdownlint and yamllint from the GitHub Super-Linter
Add new custom pre-commit hook running with a shell script to sort alphabetically and uniquify codespell.txt
Add new pre-commit hook to check spelling with codespell
https://github.com/codespell-project/codespell
Fix spelling
Diffstat (limited to 'mrbgems/mruby-error')
| -rw-r--r-- | mrbgems/mruby-error/src/exception.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-error/src/exception.c b/mrbgems/mruby-error/src/exception.c index ca26b8819..ffa7d53bf 100644 --- a/mrbgems/mruby-error/src/exception.c +++ b/mrbgems/mruby-error/src/exception.c @@ -31,7 +31,7 @@ mrb_ensure(mrb_state *mrb, mrb_func_t body, mrb_value b_data, mrb_func_t ensure, mrb_gc_arena_restore(mrb, ai); mrb_gc_protect(mrb, result); if (error) { - mrb_exc_raise(mrb, result); /* rethrow catched exceptions */ + mrb_exc_raise(mrb, result); /* rethrow caught exceptions */ } return result; } |
