Adjusted append docs.

Closes #2568.
This commit is contained in:
Klemens
2022-12-21 14:37:16 +08:00
committed by Klemens Morgenstern
parent 11b267e724
commit 51a73f2e64

View File

@@ -73,15 +73,14 @@ enum class file_mode
*/ */
write_existing, write_existing,
/** Appending to a new or truncated file /** Appending to a new or existing file
The current file position shall be set to the end of The current file position shall be set to the end of
the file prior to each write. the file prior to each write.
@li If the file does not exist, it is created. @li If the file does not exist, it is created.
@li If the file exists, it is truncated to @li If the file exists, the new data gets appended.
zero size upon opening.
*/ */
append, append,