diff --git a/library/stdio_fwrite.c b/library/stdio_fwrite.c index d4621b0..8ab955e 100644 --- a/library/stdio_fwrite.c +++ b/library/stdio_fwrite.c @@ -114,7 +114,7 @@ fwrite(const void *ptr,size_t element_size,size_t count,FILE *stream) if(__fputc_check((FILE *)file) < 0) goto out; - /* If this is an unbuffered interactiv stream, we will switch + /* If this is an unbuffered interactive stream, we will switch to line buffered mode in order to improve readability of the output. */ buffer_mode = (file->iob_Flags & IOBF_BUFFER_MODE);