diff options
Diffstat (limited to '')
-rw-r--r-- | include/stdio.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/stdio.h b/include/stdio.h index 598c6ef..419ba5a 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -140,11 +140,9 @@ int dprintf(int, const char* restrict, ...) /** * 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. |