Fixed Haddock notation in OAuth

This commit is contained in:
Hiromi Ishii 2011-03-07 17:04:21 +09:00
parent db6f72995d
commit 4d87d3b2c6

View File

@ -1,15 +1,15 @@
{-# LANGUAGE DeriveDataTypeable, OverloadedStrings, StandaloneDeriving #-} {-# LANGUAGE DeriveDataTypeable, OverloadedStrings, StandaloneDeriving #-}
{-# OPTIONS_GHC -Wall -fno-warn-orphans #-} {-# OPTIONS_GHC -Wall -fno-warn-orphans #-}
module Web.Authenticate.OAuth module Web.Authenticate.OAuth
( -- | Data types ( -- * Data types
OAuth(..), SignMethod(..), Credential(..), OAuth(..), SignMethod(..), Credential(..),
-- | Operations for credentials -- * Operations for credentials
emptyCredential, insert, delete, inserts, emptyCredential, insert, delete, inserts,
-- | Signature -- * Signature
signOAuth, signOAuth,
-- | Url & operation for authentication -- * Url & operation for authentication
authorizeUrl, getAccessToken, getTemporaryCredential, authorizeUrl, getAccessToken, getTemporaryCredential,
-- | Utility Methods -- * Utility Methods
paramEncode paramEncode
) where ) where
import Network.HTTP.Enumerator import Network.HTTP.Enumerator