diff options
author | Daniel O'Callaghan <danny@FreeBSD.org> | 1998-06-10 12:37:45 +0000 |
---|---|---|
committer | Daniel O'Callaghan <danny@FreeBSD.org> | 1998-06-10 12:37:45 +0000 |
commit | 9b0662e6468c1f103d8ff985225c01e1cb42549f (patch) | |
tree | 8c797776f2145da40d88f1a50eb56f1eaf7e3c09 /lib/libc/stdtime/strftime.3 | |
parent | 1499abeef444e38d4173252b8b0b9b865c182804 (diff) | |
download | src-9b0662e6468c1f103d8ff985225c01e1cb42549f.tar.gz src-9b0662e6468c1f103d8ff985225c01e1cb42549f.zip |
Fix grammar, "null" -> "NUL"
Notes
Notes:
svn path=/head/; revision=36854
Diffstat (limited to 'lib/libc/stdtime/strftime.3')
-rw-r--r-- | lib/libc/stdtime/strftime.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdtime/strftime.3 b/lib/libc/stdtime/strftime.3 index 55b8ffda0729..4560515a618e 100644 --- a/lib/libc/stdtime/strftime.3 +++ b/lib/libc/stdtime/strftime.3 @@ -68,15 +68,15 @@ No more than .Fa maxsize characters will be placed into the array. If the total number of resulting characters, including the terminating -null character, is not more than +NUL character, is not more than .Fa maxsize , .Fn strftime returns the number of characters in the array, not counting the -terminating null. +terminating NUL. Otherwise, zero is returned and the buffer contents is indeterminate. .Pp -Each conversion specification is replaced by the characters as -follows which are then copied into the buffer. +The conversion specifications are copied to the buffer after expansion +as follows:- .Bl -tag -width "xxxx" .It Cm \&%A is replaced by national representation of the full weekday name. @@ -197,7 +197,7 @@ is replaced by the year without century as a decimal number (00-99). is replaced by the time zone name. .It Cm %+ is replaced by national representation of the date and time -(the format is similar with produced by +(the format is similar to that produced by .Xr date 1 ) . .It Cm %% is replaced by |