Merge pull request #327 from lkolbly/master
Fix README specification for number_from_monday()
This commit is contained in:
commit
1935cc1a18
|
@ -185,7 +185,7 @@ assert_eq!((dt.year(), dt.month(), dt.day()), (2014, 11, 28));
|
||||||
assert_eq!((dt.month0(), dt.day0()), (10, 27)); // for unfortunate souls
|
assert_eq!((dt.month0(), dt.day0()), (10, 27)); // for unfortunate souls
|
||||||
assert_eq!((dt.hour(), dt.minute(), dt.second()), (21, 45, 59));
|
assert_eq!((dt.hour(), dt.minute(), dt.second()), (21, 45, 59));
|
||||||
assert_eq!(dt.weekday(), Weekday::Fri);
|
assert_eq!(dt.weekday(), Weekday::Fri);
|
||||||
assert_eq!(dt.weekday().number_from_monday(), 5); // Mon=1, ..., Sat=7
|
assert_eq!(dt.weekday().number_from_monday(), 5); // Mon=1, ..., Sun=7
|
||||||
assert_eq!(dt.ordinal(), 332); // the day of year
|
assert_eq!(dt.ordinal(), 332); // the day of year
|
||||||
assert_eq!(dt.num_days_from_ce(), 735565); // the number of days from and including Jan 1, 1
|
assert_eq!(dt.num_days_from_ce(), 735565); // the number of days from and including Jan 1, 1
|
||||||
|
|
||||||
|
|
|
@ -173,7 +173,7 @@
|
||||||
//! assert_eq!((dt.month0(), dt.day0()), (10, 27)); // for unfortunate souls
|
//! assert_eq!((dt.month0(), dt.day0()), (10, 27)); // for unfortunate souls
|
||||||
//! assert_eq!((dt.hour(), dt.minute(), dt.second()), (21, 45, 59));
|
//! assert_eq!((dt.hour(), dt.minute(), dt.second()), (21, 45, 59));
|
||||||
//! assert_eq!(dt.weekday(), Weekday::Fri);
|
//! assert_eq!(dt.weekday(), Weekday::Fri);
|
||||||
//! assert_eq!(dt.weekday().number_from_monday(), 5); // Mon=1, ..., Sat=7
|
//! assert_eq!(dt.weekday().number_from_monday(), 5); // Mon=1, ..., Sun=7
|
||||||
//! assert_eq!(dt.ordinal(), 332); // the day of year
|
//! assert_eq!(dt.ordinal(), 332); // the day of year
|
||||||
//! assert_eq!(dt.num_days_from_ce(), 735565); // the number of days from and including Jan 1, 1
|
//! assert_eq!(dt.num_days_from_ce(), 735565); // the number of days from and including Jan 1, 1
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in New Issue