From e7711a3c17a53f1b2da8f27a980413021f460e32 Mon Sep 17 00:00:00 2001 From: Alp Mestanogullari Date: Tue, 28 Oct 2014 12:36:32 +0100 Subject: [PATCH] small haddocks changes --- src/Servant/API.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Servant/API.hs b/src/Servant/API.hs index bf0a8da4..5b2c3cc6 100644 --- a/src/Servant/API.hs +++ b/src/Servant/API.hs @@ -1,17 +1,17 @@ module Servant.API ( -- * Combinators - -- | Type-level combinator for expressing routing, captures, get parameters, etc. + -- | Type-level combinator for expressing subrouting: @':>'@ module Servant.API.Sub, - -- | Type-level combinator for alternative endpoints + -- | Type-level combinator for alternative endpoints: @':<|>'@ module Servant.API.Union, -- * Accessing information from the request - -- | Capturing parts of the url path as parsed values + -- | Capturing parts of the url path as parsed values: @'Capture'@ module Servant.API.Capture, - -- | Retrieving parameters from the query part of the 'URI' + -- | Retrieving parameters from the query part of the 'URI': @'GetParam'@ module Servant.API.GetParam, - -- | Accessing the request's body + -- | Accessing the request's body: @'RQBody'@ module Servant.API.RQBody, -- * Actual endpoints, distinguished by HTTP method