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 #-}
{-# OPTIONS_GHC -Wall -fno-warn-orphans #-}
module Web.Authenticate.OAuth
( -- | Data types
( -- * Data types
OAuth(..), SignMethod(..), Credential(..),
-- | Operations for credentials
-- * Operations for credentials
emptyCredential, insert, delete, inserts,
-- | Signature
-- * Signature
signOAuth,
-- | Url & operation for authentication
-- * Url & operation for authentication
authorizeUrl, getAccessToken, getTemporaryCredential,
-- | Utility Methods
-- * Utility Methods
paramEncode
) where
import Network.HTTP.Enumerator