]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/Utils.hs
Doc fix, optimization, and more.
[Lucu.git] / Network / HTTP / Lucu / Utils.hs
index d92516ee15875a6791fc912b8d11ebe1eb765ffb..0c29836592e72be3354bf6e6fc2826f5cd666ace 100644 (file)
@@ -40,7 +40,8 @@ trim p = p `seq` trimTail . trimHead
       trimHead = dropWhile p
       trimTail = reverse . trimHead . reverse
 
--- |@'noCaseEq' a b@ is equivalent to @(map toLower a) == (map toLower
+-- |@'noCaseEq' a b@ is equivalent to @('Prelude.map'
+-- 'Data.Char.toLower' a) == ('Prelude.map' 'Data.Char.toLower'
 -- b)@. See 'noCaseEq''.
 noCaseEq :: String -> String -> Bool
 noCaseEq a b
@@ -55,7 +56,8 @@ noCaseEq' a b
     | otherwise            = noCaseEq a b
 {-# INLINE noCaseEq' #-}
 
--- |@'isWhiteSpace' c@ is True iff c is one of SP, HT, CR and LF.
+-- |@'isWhiteSpace' c@ is 'Prelude.True' iff c is one of SP, HT, CR
+-- and LF.
 isWhiteSpace :: Char -> Bool
 isWhiteSpace ' '  = True
 isWhiteSpace '\t' = True