aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Utils.hs
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2010-07-01 16:12:18 +0000
committerDavid Waern <david.waern@gmail.com>2010-07-01 16:12:18 +0000
commitee4ebb2a3081e7be89f9e94b0fdfc939267cf793 (patch)
tree1a55ef71ca43268458644de847d47019dc7b97fd /src/Haddock/Utils.hs
parentd975301e5ef93ba49ad45a2259ab841928985216 (diff)
Warning police
Diffstat (limited to 'src/Haddock/Utils.hs')
-rw-r--r--src/Haddock/Utils.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Utils.hs b/src/Haddock/Utils.hs
index 5bdae25f..396111c1 100644
--- a/src/Haddock/Utils.hs
+++ b/src/Haddock/Utils.hs
@@ -327,7 +327,7 @@ replace :: Eq a => a -> a -> [a] -> [a]
replace a b = map (\x -> if x == a then b else x)
spanWith :: (a -> Maybe b) -> [a] -> ([b],[a])
-spanWith p [] = ([],[])
+spanWith _ [] = ([],[])
spanWith p xs@(a:as)
| Just b <- p a = let (bs,cs) = spanWith p as in (b:bs,cs)
| otherwise = ([],xs)