Merge pull request #791 from ivan-m/defAction-doc

Make defAction's documentation visible to Haddock
This commit is contained in:
Oleg Grenrus 2017-07-28 12:29:57 +03:00 committed by GitHub
commit 9428eecda8

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.
--