diff --git a/libc-bottom-half/sources/sbrk.c b/libc-bottom-half/sources/sbrk.c index 226ab5e..0c78c68 100644 --- a/libc-bottom-half/sources/sbrk.c +++ b/libc-bottom-half/sources/sbrk.c @@ -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(); }