Skip to content

Commit c54004f

Browse files
mikevoronovsunfishcode
authored andcommitted
fix the typo (#108)
* fix the typo
1 parent 78b8651 commit c54004f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • libc-bottom-half/sources

libc-bottom-half/sources/sbrk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

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

0 commit comments

Comments
 (0)