From c54004fcce3aa2b739a903b8da96bc4bb89b623e Mon Sep 17 00:00:00 2001 From: vms Date: Tue, 15 Oct 2019 00:52:10 +0300 Subject: [PATCH] fix the typo (#108) * fix the typo --- libc-bottom-half/sources/sbrk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }