Fix broken doc tests in Internal/Auth.hs

This commit is contained in:
aaron levin 2016-01-07 23:00:34 +01:00
parent 4e6a6c0ce6
commit 08cfe21393

View file

@ -29,8 +29,8 @@ data AuthResult usr
-- * Basic Auth
newtype BasicAuthCheck usr = BasicAuthCheck
{ unBasicAuthCheck :: BS.ByteString -- ^ Username
-> BS.ByteString -- ^ Password
{ unBasicAuthCheck :: BS.ByteString -- Username
-> BS.ByteString -- Password
-> IO (AuthResult usr)
}
deriving (Generic, Typeable, Functor)