fix haddock

This commit is contained in:
Jon Schoning 2016-11-08 13:48:03 -06:00
parent 875b755e58
commit c517fb896a
3 changed files with 9 additions and 6 deletions

View file

@ -15,7 +15,8 @@
--
-- Provides Pinboard Api Access (deserializes into Haskell data structures)
module Pinboard.Api
( getPostsRecent
( -- ** Posts
getPostsRecent
, getPostsForDate
, getPostsAll
, getPostsDates
@ -36,7 +37,7 @@ module Pinboard.Api
, getNote
) where
-- ** Posts
import Pinboard.Client (pinboardJson)
import Data.Text (Text)
import Data.Time (UTCTime)

View file

@ -13,7 +13,9 @@
-- sent via Pinboard.Client, in the case you need more control
-- for how the response should be processed over what Pinboard.Api provides.
module Pinboard.ApiRequest
( getPostsRecentRequest
(
-- ** Posts
getPostsRecentRequest
, getPostsForDateRequest
, getPostsAllRequest
, getPostsDatesRequest
@ -34,7 +36,7 @@ module Pinboard.ApiRequest
, getNoteRequest
) where
-- ** Posts
import Pinboard.Types
(PinboardRequest(..), Param(..), ResultFormatType(..))

View file

@ -15,7 +15,8 @@
-- Portability : POSIX
------------------------------------------------------------------------------
module Pinboard.Client
( fromApiToken
( -- * Config
fromApiToken
, defaultPinboardConfig
-- | The PinboardConfig provides authentication via apiToken
, PinboardConfig(..)
@ -45,7 +46,6 @@ module Pinboard.Client
, module X
) where
-- * Config
import Control.Monad.IO.Class
import Control.Monad.Reader