From: PHO Date: Tue, 1 Nov 2011 14:46:36 +0000 (+0900) Subject: haddock comments X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=Lucu.git;a=commitdiff_plain;h=7eed467cbc7ed48c1b88766f0c7eb6bb77be09ef haddock comments --- diff --git a/Network/HTTP/Lucu.hs b/Network/HTTP/Lucu.hs index 901ae00..d45beaf 100644 --- a/Network/HTTP/Lucu.hs +++ b/Network/HTTP/Lucu.hs @@ -5,7 +5,7 @@ -- [/Affinity for RESTafarians/] Lucu is specifically designed to be -- suitable for RESTful applications. -- --- [/Full support of HTTP\/1.1/] Lucu supports request pipelining, +-- [/Full support of HTTP/\//1.1/] Lucu supports request pipelining, -- chunked I\/O, ETag comparison and \"100 Continue\". -- -- [/SSL connections/] Lucu can handle HTTP connections over Secure diff --git a/Network/HTTP/Lucu/Parser.hs b/Network/HTTP/Lucu/Parser.hs index b31d4b8..ac1bf02 100644 --- a/Network/HTTP/Lucu/Parser.hs +++ b/Network/HTTP/Lucu/Parser.hs @@ -23,7 +23,7 @@ atMost n v = ( (:) <$> v ⊛ atMost (n-1) v ) <|> pure [] --- |@'finishOff' p@ is equivalent to @p '>>=' \a -> endOfInput '>>' +-- |@'finishOff' p@ is equivalent to @p '>>=' \\a -> 'endOfInput' '>>' -- 'return' a@. finishOff ∷ Parser α → Parser α {-# INLINE finishOff #-}