Miss qualified function usage

This commit is contained in:
Michael Snoyman 2014-07-24 10:28:23 +03:00
parent 2d54a5df13
commit 027dfa9d91

View File

@ -233,7 +233,7 @@ $newline never
}
readMay :: Read a => String -> Maybe a
readMay s = case filter (null . snd) $ reads s of
readMay s = case filter (Prelude.null . snd) $ reads s of
(x, _):_ -> Just x
[] -> Nothing