aboutsummaryrefslogtreecommitdiffstats
path: root/src/stdio
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-11 16:11:01 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-11 16:11:01 +0200
commit8c1d64354dff12a715a854ccee8888fa8026bcd3 (patch)
tree596bde052d1ff83517e77b1c4a0ff95b384334b6 /src/stdio
parentfix inclusions (diff)
downloadslibc-8c1d64354dff12a715a854ccee8888fa8026bcd3.tar.gz
slibc-8c1d64354dff12a715a854ccee8888fa8026bcd3.tar.bz2
slibc-8c1d64354dff12a715a854ccee8888fa8026bcd3.tar.xz
m + m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/stdio/printf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/stdio/printf.c b/src/stdio/printf.c
index f63de94..e5c603c 100644
--- a/src/stdio/printf.c
+++ b/src/stdio/printf.c
@@ -397,11 +397,9 @@ int dprintf(int fd, const char* restrict format, ...)
/**
* This function is identical to `fprintf`,
- * except it is limited to buffer-backed
- * streams, and uses the buffer as the first
- * argument rather than then the stream.
+ * it prints to a buffer rather than a stream.
*
- * This is identical to `sprintf` with
+ * This is identical to `snprintf` with
* `SIZE_MAX` as the second argument.
*
* @param buffer The output buffer.