aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2021-02-06 10:19:25 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2021-02-06 10:19:25 +0100
commitc7c869e66dada19aadc1845bbe28aa617bb63716 (patch)
treea9123611b7bc8ed8cb021c151c44f4c8f358df29
parent2a8c925ba8c31f47c29ccd01085558690fbd4e2d (diff)
downloadman-pages-c7c869e66dada19aadc1845bbe28aa617bb63716.tar.gz
setbuf.3: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man3/setbuf.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/setbuf.3 b/man3/setbuf.3
index 2cd7782853..b79ddfd88b 100644
--- a/man3/setbuf.3
+++ b/man3/setbuf.3
@@ -78,8 +78,8 @@ The three types of buffering available are unbuffered, block buffered, and
line buffered.
When an output stream is unbuffered, information appears on
the destination file or terminal as soon as written; when it is block
-buffered many characters are saved up and written as a block; when it is
-line buffered characters are saved up until a newline is output or input is
+buffered, many characters are saved up and written as a block; when it is
+line buffered, characters are saved up until a newline is output or input is
read from any stream attached to a terminal device (typically \fIstdin\fP).
The function
.BR fflush (3)