Skip to content

Commit

Permalink
fix the typo (WebAssembly#108)
Browse files Browse the repository at this point in the history
* fix the typo
  • Loading branch information
mikevoronov authored and sunfishcode committed Oct 14, 2019
1 parent 78b8651 commit c54004f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libc-bottom-half/sources/sbrk.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/* Bare-bones implementation of sbrk: just call memory.grow. */
void *sbrk(intptr_t increment) {
/* We only supprt page-size increments. */
/* We only support page-size increments. */
if (increment % PAGESIZE != 0) {
abort();
}
Expand Down

0 comments on commit c54004f

Please sign in to comment.