@@ -2589,8 +2589,6 @@ date_s__valid_civil_p(int argc, VALUE *argv, VALUE klass)
25892589 *
25902590 * See argument {start}[rdoc-ref:calendars.rdoc@Argument+start].
25912591 *
2592- * Date.valid_date? is an alias for Date.valid_civil?.
2593- *
25942592 * Related: Date.jd, Date.new.
25952593 */
25962594static VALUE
@@ -2986,8 +2984,6 @@ date_s_julian_leap_p(VALUE klass, VALUE y)
29862984 * Date.gregorian_leap?(2000) # => true
29872985 * Date.gregorian_leap?(2001) # => false
29882986 *
2989- * Date.leap? is an alias for Date.gregorian_leap?.
2990- *
29912987 * Related: Date.julian_leap?.
29922988 */
29932989static VALUE
@@ -3493,8 +3489,6 @@ date_s_civil(int argc, VALUE *argv, VALUE klass)
34933489 *
34943490 * See argument {start}[rdoc-ref:calendars.rdoc@Argument+start].
34953491 *
3496- * Date.civil is an alias for Date.new.
3497- *
34983492 * Related: Date.jd.
34993493 */
35003494static VALUE
@@ -4832,8 +4826,6 @@ date_s_xmlschema(int argc, VALUE *argv, VALUE klass)
48324826 *
48334827 * See argument {limit}[rdoc-ref:Date@Argument+limit].
48344828 *
4835- * Date._rfc822 is an alias for Date._rfc2822.
4836- *
48374829 * Related: Date.rfc2822 (returns a \Date object).
48384830 */
48394831static VALUE
@@ -4864,8 +4856,6 @@ date_s__rfc2822(int argc, VALUE *argv, VALUE klass)
48644856 * - Argument {start}[rdoc-ref:calendars.rdoc@Argument+start].
48654857 * - Argument {limit}[rdoc-ref:Date@Argument+limit].
48664858 *
4867- * Date.rfc822 is an alias for Date.rfc2822.
4868- *
48694859 * Related: Date._rfc2822 (returns a hash).
48704860 */
48714861static VALUE
@@ -5346,7 +5336,6 @@ d_lite_yday(VALUE self)
53465336 *
53475337 * Date.new(2001, 2, 3).mon # => 2
53485338 *
5349- * Date#month is an alias for Date#mon.
53505339 */
53515340static VALUE
53525341d_lite_mon (VALUE self )
@@ -5363,7 +5352,6 @@ d_lite_mon(VALUE self)
53635352 *
53645353 * Date.new(2001, 2, 3).mday # => 3
53655354 *
5366- * Date#day is an alias for Date#mday.
53675355 */
53685356static VALUE
53695357d_lite_mday (VALUE self )
@@ -5613,7 +5601,6 @@ d_lite_hour(VALUE self)
56135601 *
56145602 * DateTime.new(2001, 2, 3, 4, 5, 6).min # => 5
56155603 *
5616- * Date#minute is an alias for Date#min.
56175604 */
56185605static VALUE
56195606d_lite_min (VALUE self )
@@ -5630,7 +5617,6 @@ d_lite_min(VALUE self)
56305617 *
56315618 * DateTime.new(2001, 2, 3, 4, 5, 6).sec # => 6
56325619 *
5633- * Date#second is an alias for Date#sec.
56345620 */
56355621static VALUE
56365622d_lite_sec (VALUE self )
@@ -5648,7 +5634,6 @@ d_lite_sec(VALUE self)
56485634 *
56495635 * DateTime.new(2001, 2, 3, 4, 5, 6.5).sec_fraction # => (1/2)
56505636 *
5651- * Date#second_fraction is an alias for Date#sec_fraction.
56525637 */
56535638static VALUE
56545639d_lite_sec_fraction (VALUE self )
@@ -6424,7 +6409,6 @@ d_lite_prev_day(int argc, VALUE *argv, VALUE self)
64246409 * d.to_s # => "2001-02-03"
64256410 * d.next.to_s # => "2001-02-04"
64266411 *
6427- * Date#succ is an alias for Date#next.
64286412 */
64296413static VALUE
64306414d_lite_next (VALUE self )
@@ -7298,7 +7282,6 @@ strftimev(const char *fmt, VALUE self,
72987282 *
72997283 * See {asctime}[https://linux.die.net/man/3/asctime].
73007284 *
7301- * Date#ctime is an alias for Date#asctime.
73027285 */
73037286static VALUE
73047287d_lite_asctime (VALUE self )
@@ -7316,7 +7299,6 @@ d_lite_asctime(VALUE self)
73167299 *
73177300 * Date.new(2001, 2, 3).iso8601 # => "2001-02-03"
73187301 *
7319- * Date#xmlschema is an alias for Date#iso8601.
73207302 */
73217303static VALUE
73227304d_lite_iso8601 (VALUE self )
@@ -7349,7 +7331,6 @@ d_lite_rfc3339(VALUE self)
73497331 *
73507332 * Date.new(2001, 2, 3).rfc2822 # => "Sat, 3 Feb 2001 00:00:00 +0000"
73517333 *
7352- * Date#rfc822 is an alias for Date#rfc2822.
73537334 */
73547335static VALUE
73557336d_lite_rfc2822 (VALUE self )
0 commit comments