From 8cb0d4817e487dc215c73c78dfef30bcd8be32f3 Mon Sep 17 00:00:00 2001 From: Muhammad Attiyah Date: Wed, 23 May 2018 18:15:45 +0200 Subject: [PATCH] Fix typo in a comment in the Stream module. --- servant/src/Servant/API/Stream.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant/src/Servant/API/Stream.hs b/servant/src/Servant/API/Stream.hs index 369955b8..ff294e47 100644 --- a/servant/src/Servant/API/Stream.hs +++ b/servant/src/Servant/API/Stream.hs @@ -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)