From 45df57e8d8801f5b01c3e45a2c427b55845dac19 Mon Sep 17 00:00:00 2001 From: Joshua Daniel Franklin Date: Thu, 24 Feb 2005 06:14:44 +0000 Subject: [PATCH] Fix minor typo --- newlib/libc/time/strftime.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/newlib/libc/time/strftime.c b/newlib/libc/time/strftime.c index 395f8f3d8..2d25890d0 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<> 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>>').