typo corrected
This commit is contained in:
parent
5d11928392
commit
ef46ca4777
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@ are also generated so that the range of years is continuous"
|
||||||
|
|
||||||
(defmethod holiday-p (date (cal calendar-union))
|
(defmethod holiday-p (date (cal calendar-union))
|
||||||
"True if date is a holiday in any contained calendar"
|
"True if date is a holiday in any contained calendar"
|
||||||
(some #'identity (lambda (cal) (holiday-p date cal)) (calendars cal)))
|
(some #'identity (mapcar (lambda (cal) (holiday-p date cal)) (calendars cal))))
|
||||||
|
|
||||||
(defmethod business-day-p (date (cal calendar))
|
(defmethod business-day-p (date (cal calendar))
|
||||||
"True if date is not a holiday or weekend in the given calendar"
|
"True if date is not a holiday or weekend in the given calendar"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue