Clean up documentation

This commit is contained in:
Joscha 2018-04-04 19:11:00 +00:00
parent 02ceb45a2f
commit 05c946fbcc
2 changed files with 5 additions and 2 deletions

View file

@ -10,12 +10,15 @@
-- 'Nothing' into 'False'.
module TaskMachine.DateExpr
( BoolExpr
(
-- * Boolean expressions
BoolExpr
, parseBoolExpr
, evalBoolExpr
, evalBoolExpr'
, findNext
, findWithin
-- * Integer expressions
, IntExpr
, parseIntExpr
, evalIntExpr

View file

@ -33,7 +33,7 @@ data Deadline
| DExpression TM.BoolExpr Duration
-- | Find the next date of the 'Deadline' that's important for a certain day.
-- This returns a 'Just' when the day lies within the duration specified.
-- This returns a @Just@ when the day lies within the duration specified.
--
-- If no duration is specified in a 'DFixed' deadline, all days before the deadline,
-- including the deadline itself, are important (i. e. the duration is infinite).