aboutsummaryrefslogtreecommitdiffstats
path: root/time.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-27 20:58:05 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-27 20:58:05 +0000
commitea418dda412c454e5247c698ef2382f2b8a2a6ea (patch)
tree19c35a5ee146d4ce020a9898fc4d20ec7f770a40 /time.c
parent1bf4a34eec846ab9aec7dafc92132044d9ee1620 (diff)
downloadruby-ea418dda412c454e5247c698ef2382f2b8a2a6ea.tar.gz
* time.c: [DOC] Clarify %Y in strftime, which can accept any digits
and will output at least 4 digits as the year. Reported by Yury Trofimenko [Bug #8941] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time.c b/time.c
index 3aaa1c8334..db2a537b09 100644
--- a/time.c
+++ b/time.c
@@ -4399,7 +4399,7 @@ strftimev(const char *fmt, VALUE time, rb_encoding *enc)
* Format directives:
*
* Date (Year, Month, Day):
- * %Y - Year with century (can be negative, 4 digits at least)
+ * %Y - Year with century if provided, will pad result at least 4 digits.
* -0001, 0000, 1995, 2009, 14292, etc.
* %C - year / 100 (rounded down such as 20 in 2009)
* %y - year % 100 (00..99)