]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Parser/Http.hs
Cosmetic changes suggested by hlint
[Lucu.git] / Network / HTTP / Lucu / Parser / Http.hs
index adbda7b7e81bb3d863afa8b1b2a43e6012d2cd68..f6c80dc8072f65abb76deec29c6fc0f6addc476f 100644 (file)
@@ -87,7 +87,7 @@ lws = do s  <- option "" crlf
 
 -- |'text' accepts one character which doesn't satisfy 'isCtl'.
 text :: Parser Char
-text = satisfy (\ c -> not (isCtl c))
+text = satisfy (not . isCtl)
 
 -- |'separator' accepts one character which satisfies 'isSeparator'.
 separator :: Parser Char