fix the typo (#108)

* fix the typo
This commit is contained in:
vms 2019-10-15 00:52:10 +03:00 committed by Dan Gohman
parent 78b8651224
commit c54004fcce

View File

@ -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();
}