Make defAction's documentation visible to Haddock

This commit is contained in:
Ivan Lazar Miljenovic 2017-07-28 16:39:52 +10:00
parent 213620e56a
commit 31578b9bfa

View File

@ -263,8 +263,8 @@ combineAction :: Action -> Action -> Action
Action a c h p n m ts body resp `combineAction` Action a' c' h' p' n' m' _ _ _ =
Action (a <> a') (c <> c') (h <> h') (p <> p') (n <> n') (m <> m') ts body resp
-- Default 'Action'. Has no 'captures', no GET 'params', expects
-- no request body ('rqbody') and the typical response is 'defResponse'.
-- | Default 'Action'. Has no 'captures', no GET 'params', expects no
-- request body ('rqbody') and the typical response is 'defResponse'.
--
-- Tweakable with lenses.
--