diff options
author | Joshua Daniel Franklin <joshuadfranklin@yahoo.com> | 2005-02-24 06:14:44 +0000 |
---|---|---|
committer | Joshua Daniel Franklin <joshuadfranklin@yahoo.com> | 2005-02-24 06:14:44 +0000 |
commit | 45df57e8d8801f5b01c3e45a2c427b55845dac19 (patch) | |
tree | 715d615beefa009d7e77d064525bd4630c936e9f /newlib/libc/time | |
parent | f6dbe3872a96c0f3331f547747480d7aa945fc1c (diff) | |
download | newlib-45df57e8d8801f5b01c3e45a2c427b55845dac19.zip newlib-45df57e8d8801f5b01c3e45a2c427b55845dac19.tar.gz newlib-45df57e8d8801f5b01c3e45a2c427b55845dac19.tar.bz2 |
Fix minor typo
Diffstat (limited to 'newlib/libc/time')
-rw-r--r-- | newlib/libc/time/strftime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/time/strftime.c b/newlib/libc/time/strftime.c index 395f8f3..2d25890 100644 --- a/newlib/libc/time/strftime.c +++ b/newlib/libc/time/strftime.c @@ -84,7 +84,7 @@ A string representing the date, in the form `<<"%m/%d/%y">>'. o %e The day of the month, formatted with leading space if single digit -(from `<< 1>>' to `<<31>>'). [tm_mday] +(from `<<1>>' to `<<31>>'). [tm_mday] o %E<<x>> In some locales, the E modifier selects alternative representations of @@ -127,11 +127,11 @@ The count of days in the year, formatted with three digits o %k The hour (on a 24-hour clock), formatted with leading space if single -digit (from `<< 0>>' to `<<23>>'). Non-POSIX extension. [tm_hour] +digit (from `<<0>>' to `<<23>>'). Non-POSIX extension. [tm_hour] o %l The hour (on a 12-hour clock), formatted with leading space if single -digit (from `<< 1>>' to `<<12>>'). Non-POSIX extension. [tm_hour] +digit (from `<<1>>' to `<<12>>'). Non-POSIX extension. [tm_hour] o %m The month number, formatted with two digits (from `<<01>>' to `<<12>>'). |