diff options
author | des <des@FreeBSD.org> | 2005-05-04 08:12:44 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-05-04 08:12:44 +0000 |
commit | 8a19b2b671e298d9ee480debd08951a16f6997fc (patch) | |
tree | fa55d1aabd3115a62f5795582dc3bf5186f3f8b9 /lib/libc/stdio | |
parent | faca84b3b15259d7140a300593dc371e3f124f64 (diff) | |
download | FreeBSD-src-8a19b2b671e298d9ee480debd08951a16f6997fc.zip FreeBSD-src-8a19b2b671e298d9ee480debd08951a16f6997fc.tar.gz |
The correct description for mode "w" is
(((truncate to zero length) or (create)) (text file)) (for writing)
and not
((truncate file to zero length) or (create text file)) (for writing)
MFC after: 1 week
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/fopen.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fopen.3 b/lib/libc/stdio/fopen.3 index 1508e59..e0680da 100644 --- a/lib/libc/stdio/fopen.3 +++ b/lib/libc/stdio/fopen.3 @@ -74,7 +74,7 @@ The stream is positioned at the beginning of the file. Open for reading and writing. The stream is positioned at the beginning of the file. .It Dq Li w -Truncate file to zero length or create text file for writing. +Truncate to zero length or create text file for writing. The stream is positioned at the beginning of the file. .It Dq Li w+ Open for reading and writing. |