* ext/date/date_core.c: added notes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2011-06-06 12:38:15 +00:00
Родитель 961143f659
Коммит 8676852786
2 изменённых файлов: 11 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Mon Jun 6 21:37:45 2011 Tadayoshi Funaba <tadf@dotrb.org>
* ext/date/date_core.c: added notes.
Mon Jun 6 21:02:12 2011 Tadayoshi Funaba <tadf@dotrb.org>
* ext/date/date_core.c: flattened format to strftimev.

Просмотреть файл

@ -8433,6 +8433,10 @@ mk_ary_of_str(long len, const char *a[])
* Note: in the Julian Calendar, New Years Day was March 25. The
* Date class does not follow this convention.
*
* Note: The Julian Day Number of the Day of Calendar Reform should be
* 2298874 to 2426355 (approx. 1582-1930 CE) or -/+oo (proleptic
* Julian/Gregorain Calendar).
*
* === Offsets
*
* DateTime objects support a simple representation
@ -8442,8 +8446,7 @@ mk_ary_of_str(long len, const char *a[])
* how much local time is later (or earlier) than UTC.
* As you travel east, the offset increases until you
* reach the dateline in the middle of the Pacific Ocean;
* as you travel west, the offset decreases. This offset
* is abbreviated as +offset+ in the Date class.
* as you travel west, the offset decreases.
*
* This simple representation of offsets does not take
* into account the common practice of Daylight Savings
@ -8457,6 +8460,8 @@ mk_ary_of_str(long len, const char *a[])
* The Date class does not support offsets, in that
* there is no way to create a Date object with non-utc offset.
*
* Note: Offset should be -1 to 1 (-24:00-+24:00).
*
* == Examples of use
*
* === Print out the date of every Sunday between two dates.