summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-09 18:54:12 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-09 18:54:12 +0000
commit4dbafb0d89376a9a05c8de9729a5e604ce470b52 (patch)
treecff05114c8595dc9a1d5b16758ea22e59ff21952
parent3c45e3f1b77ddbc63ed8528a71f959ff5dfaf272 (diff)
update doc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--time.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/time.c b/time.c
index 5748c142a1..bfcbcd9f62 100644
--- a/time.c
+++ b/time.c
@@ -4419,10 +4419,14 @@ strftimev(const char *fmt, VALUE time, rb_encoding *enc)
*
* %L - Millisecond of the second (000..999)
* %N - Fractional seconds digits, default is 9 digits (nanosecond)
- * %3N millisecond (3 digits)
- * %6N microsecond (6 digits)
- * %9N nanosecond (9 digits)
- * %12N picosecond (12 digits)
+ * %3N milli second (3 digits)
+ * %6N micro second (6 digits)
+ * %9N nano second (9 digits)
+ * %12N pico second (12 digits)
+ * %15N femto second (15 digits)
+ * %18N atto second (18 digits)
+ * %21N zepto second (21 digits)
+ * %24N yocto second (24 digits)
*
* Time zone:
* %z - Time zone as hour and minute offset from UTC (e.g. +0900)