Reformat data declaration and comment

- Prevents haddock parse error
This commit is contained in:
patrick brisbin 2014-08-19 17:33:33 -04:00
parent bcdbf1b48a
commit a2647e0ada
No known key found for this signature in database
GPG Key ID: 75481C55CEC8925D

View File

@ -29,9 +29,8 @@ import Yesod.Form
import qualified Data.ByteString.Lazy as BSL
data YesodOAuth2Exception = InvalidProfileResponse
Text -- ^ Provider name
BSL.ByteString -- ^ Aeson parse error
-- | Provider name and Aeson parse error
data YesodOAuth2Exception = InvalidProfileResponse Text BSL.ByteString
deriving (Show, Typeable)
instance Exception YesodOAuth2Exception