Skip to content

Commit

Permalink
Fix typos from #21778 (#21811)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 authored Apr 23, 2024
1 parent be3b7d9 commit b9e2a14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions system/lib/libc/musl/src/exit/abort.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
_Noreturn void abort(void)
{
#if __EMSCRIPTEN__
/* In emscripten we call out JS to perform the actual abort where it can
/* In emscripten we call out to JS to perform the actual abort where it can
* produce a nice error.
* Note that the JS library function not called `abort` to avoid conflict with
* the JavaScript abort helper (which takes a JS string as an argument and is
* itself used to implement _abort_js) */
* Note that the JS library function is not called `abort` to avoid conflict
* with the JavaScript abort helper (which takes a JS string as an argument
* and is itself used to implement `_abort_js`) */
_abort_js();
#else
raise(SIGABRT);
Expand Down

0 comments on commit b9e2a14

Please sign in to comment.