mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
update doc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
748782bfc9
commit
8f8e4e5ab5
1 changed files with 6 additions and 6 deletions
12
time.c
12
time.c
|
@ -3050,8 +3050,8 @@ time_s_mktime(int argc, VALUE *argv, VALUE klass)
|
|||
* since the Epoch.
|
||||
*
|
||||
* t = Time.now
|
||||
* "%10.5f" % t.to_f #=> "1049896564.17839"
|
||||
* t.to_i #=> 1049896564
|
||||
* "%10.5f" % t.to_f #=> "1270968656.89607"
|
||||
* t.to_i #=> 1270968656
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
|
@ -3071,11 +3071,11 @@ time_to_i(VALUE time)
|
|||
* seconds since the Epoch.
|
||||
*
|
||||
* t = Time.now
|
||||
* "%10.5f" % t.to_f #=> "1049896564.13654"
|
||||
* t.to_i #=> 1049896564
|
||||
* "%10.5f" % t.to_f #=> "1270968744.77658"
|
||||
* t.to_i #=> 1270968744
|
||||
*
|
||||
* Note that IEEE 754 double is not accurate enough to represent
|
||||
* nanoseconds from the Epoch.
|
||||
* number of nanoseconds from the Epoch.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
|
@ -3095,7 +3095,7 @@ time_to_f(VALUE time)
|
|||
* since the Epoch.
|
||||
*
|
||||
* t = Time.now
|
||||
* p t.to_r #=> (8807170717088293/8388608)
|
||||
* p t.to_r #=> (1270968792716287611/1000000000)
|
||||
*
|
||||
* This methods is intended to be used to get an accurate value
|
||||
* representing nanoseconds from the Epoch. You can use this
|
||||
|
|
Loading…
Add table
Reference in a new issue