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'. -- 'Nothing' into 'False'.
module TaskMachine.DateExpr module TaskMachine.DateExpr
( BoolExpr (
-- * Boolean expressions
BoolExpr
, parseBoolExpr , parseBoolExpr
, evalBoolExpr , evalBoolExpr
, evalBoolExpr' , evalBoolExpr'
, findNext , findNext
, findWithin , findWithin
-- * Integer expressions
, IntExpr , IntExpr
, parseIntExpr , parseIntExpr
, evalIntExpr , evalIntExpr

View file

@ -33,7 +33,7 @@ data Deadline
| DExpression TM.BoolExpr Duration | DExpression TM.BoolExpr Duration
-- | Find the next date of the 'Deadline' that's important for a certain day. -- | 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, -- 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). -- including the deadline itself, are important (i. e. the duration is infinite).