update rdoc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-04-21 17:16:11 +00:00
parent fd9bfef325
commit f67380be58

13
time.c
View File

@ -3262,18 +3262,17 @@ time_load(VALUE klass, VALUE str)
/* /*
* <code>Time</code> is an abstraction of dates and times. Time is * <code>Time</code> is an abstraction of dates and times. Time is
* stored internally as the number of seconds and nanoseconds since * stored internally as the number of seconds with fraction since
* the <em>Epoch</em>, January 1, 1970 00:00 UTC. On some operating * the <em>Epoch</em>, January 1, 1970 00:00 UTC.
* systems, this offset is allowed to be negative. Also see the * Also see the library modules <code>Date</code>.
* library modules <code>Date</code>. The * The <code>Time</code> class treats GMT (Greenwich Mean Time) and
* <code>Time</code> class treats GMT (Greenwich Mean Time) and UTC * UTC (Coordinated Universal Time)<em>[Yes, UTC really does stand for
* (Coordinated Universal Time)<em>[Yes, UTC really does stand for
* Coordinated Universal Time. There was a committee involved.]</em> * Coordinated Universal Time. There was a committee involved.]</em>
* as equivalent. GMT is the older way of referring to these * as equivalent. GMT is the older way of referring to these
* baseline times but persists in the names of calls on POSIX * baseline times but persists in the names of calls on POSIX
* systems. * systems.
* *
* All times are stored with some number of nanoseconds. Be aware of * All times may have fraction. Be aware of
* this fact when comparing times with each other---times that are * this fact when comparing times with each other---times that are
* apparently equal when displayed may be different when compared. * apparently equal when displayed may be different when compared.
*/ */