[ruby/date] Enhanced RDoc

https://github.com/ruby/date/commit/e36690f70e
This commit is contained in:
BurdetteLamar 2022-07-04 08:53:18 -05:00 committed by git
parent e323d8e6a2
commit 5fe86666a5

View File

@ -3303,6 +3303,18 @@ static VALUE d_lite_plus(VALUE, VALUE);
* Date.jd(2451945).to_s # => "2001-02-04"
* Date.jd(0).to_s # => "-4712-01-01"
*
* The returned date is:
*
* - Gregorian, if the argument is greater than or equal to +start+:
*
* Date::ITALY # => 2299161
* Date.jd(Date::ITALY).gregorian? # => true
* Date.jd(Date::ITALY + 1).gregorian? # => true
*
* - Julian, otherwise
*
* Date.jd(Date::ITALY - 1).julian? # => true
*
* See {Argument start}[rdoc-ref:Date@Argument+start].
*
* Related: Date.new.