Skip to content

Commit

Permalink
Fix typos from emscripten-core#21778
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 committed Apr 23, 2024
1 parent b7fdff5 commit f16d876
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions system/lib/libc/musl/src/exit/abort.c
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 f16d876

Please sign in to comment.