From 0858cbf3fd16ee839810e059b8ab46ead00515d4 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 18 Jan 2011 14:05:39 +0000 Subject: update doc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30594 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'time.c') diff --git a/time.c b/time.c index e6a02e5440..b576330128 100644 --- a/time.c +++ b/time.c @@ -4364,8 +4364,8 @@ strftimev(const char *fmt, VALUE time) * Date (Year, Month, Day): * %Y - Year with century (can be negative, 4 digits at least) * -0001, 0000, 1995, 2009, 14292, etc. - * %C - Century (20 in 2009) - * %y - Year without a century (00..99) + * %C - year / 100 (round down. 20 in 2009) + * %y - year % 100 (00..99) * * %m - Month of the year, zero-padded (01..12) * %_m blank-padded ( 1..12) -- cgit v1.2.3