@@ -17,29 +17,29 @@ Return `d` as a new date with `n` months added. Missing days will be added to th
1717
1818Clone the date ` d ` returning a new date with the same time.
1919
20- ### isDayAfter ` (d1 : ?Date, d2 : ?Date) ⇒ Bool `
20+ ### isDayAfter ` (day1 : ?Date, day2 : ?Date) ⇒ Bool `
2121
2222Return ` true ` if the first day is after the second day.
2323
24- ### isDayBefore ` (d1 : ?Date, d2 : ?Date) ⇒ Bool `
24+ ### isDayBefore ` (day1 : ?Date, day2 : ?Date) ⇒ Bool `
2525
2626Return ` true ` if the first day is before the second day.
2727
28- ### isSameDay ` (d1 : ?Date, d2 : ?Date) ⇒ Bool `
28+ ### isSameDay ` (day1 : ?Date, day2 : ?Date) ⇒ Bool `
2929
30- Return ` true ` if the two dates ` d1 ` and ` d2 ` are the same day, e.g. ignoring their time .
30+ Return ` true ` if ` day1 ` and ` day2 ` are the same day.
3131
32- ### isPastDay ` (d : Date) ⇒ Bool `
32+ ### isPastDay ` (day : Date) ⇒ Bool `
3333
34- Returns ` true ` if ` d ` is in the past, e.g. is yesterday or any day before yesterday.
34+ Returns ` true ` if ` day ` is in the past, e.g. is yesterday or any day before yesterday.
3535
36- ### isFutureDay ` (d : Date) ⇒ Bool `
36+ ### isFutureDay ` (day : Date) ⇒ Bool `
3737
38- Returns ` true ` if ` d ` is in the future, e.g. is tomorrow or any day after tomorrow.
38+ Returns ` true ` if ` day ` is in the future, e.g. is tomorrow or any day after tomorrow.
3939
40- ### isDayBetween ` (day: Date, d1 : Date, d2 : Date) ⇒ Bool `
40+ ### isDayBetween ` (day: Date, day1 : Date, day2 : Date) ⇒ Bool `
4141
42- Returns ` true ` if ` day ` is between the days ` d1 ` and ` d2 ` , without including those days.
42+ Returns ` true ` if ` day ` is between the days ` day1 ` and ` day2 ` , without including those days.
4343
4444### addDayToRange ` (day: Date, range: ?object<from: ?Date, to: ?Date>) ⇒ Object<from: ?Date, to: ?Date> `
4545
0 commit comments