Fix some warnings

This commit is contained in:
Michael Snoyman 2012-03-29 08:44:01 +02:00
parent 6e17c1ae17
commit 7c65829f03

View File

@ -51,13 +51,13 @@ directChildren = do
_ <- char '>'
_ <- char ' '
sels <- selectors
optional $ char ' '
_ <- optional $ char ' '
return $ DirectChildren sels
deepChildren :: Parser SelectorGroup
deepChildren = do
sels <- selectors
optional $ char ' '
_ <- optional $ char ' '
return $ DeepChildren sels
selectors :: Parser [Selector]