Update haddock.

This commit is contained in:
Kei Hibino 2014-07-30 03:40:58 +09:00
parent 8add8e6f50
commit c0b56c5bdb

View File

@ -32,7 +32,9 @@ import Database.Relational.Query.Component (QueryRestriction)
import Database.Relational.Query.Monad.Class (MonadRestrict(..), MonadQuery (..), MonadAggregate(..))
-- | 'StateT' type to accumulate join product context.
-- | Type to accumulate query restrictions.
-- Type 'c' is context tag of restriction building like
-- Flat (where) or Aggregated (having).
newtype Restrictings c m a =
Restrictings (WriterT (DList (Expr c Bool)) m a)
deriving (MonadTrans, Monad, Functor, Applicative)