Fix typo in a comment in the Stream module.

This commit is contained in:
Muhammad Attiyah 2018-05-23 18:15:45 +02:00
parent 3c4790ea27
commit 8cb0d4817e

View File

@ -30,7 +30,7 @@ import Network.HTTP.Types.Method
import Text.Read
(readMaybe)
-- | A Stream endpoint for a given method emits a stream of encoded values at a given Content-Type, delimited by a framing strategy. Steam endpoints always return response code 200 on success. Type synonyms are provided for standard methods.
-- | A Stream endpoint for a given method emits a stream of encoded values at a given Content-Type, delimited by a framing strategy. Stream endpoints always return response code 200 on success. Type synonyms are provided for standard methods.
data Stream (method :: k1) (framing :: *) (contentType :: *) (a :: *)
deriving (Typeable, Generic)