summaryrefslogtreecommitdiff
path: root/Library/Parse.hs
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2014-03-12 02:17:25 +1100
committerJed Barber <jjbarber@y7mail.com>2014-03-12 02:17:25 +1100
commitb5ff89d417c73d74a42a1756cb3ecd99b7a3e7f4 (patch)
tree97bf2d3ad4e5eac7aec320b932ccf09fdf127871 /Library/Parse.hs
parentef81889c1eccb08acc27d47c9df652541134e3db (diff)
Removed some superfluous lambdas in intermediate functions
Diffstat (limited to 'Library/Parse.hs')
-rw-r--r--Library/Parse.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Parse.hs b/Library/Parse.hs
index 0e2aa25..7494822 100644
--- a/Library/Parse.hs
+++ b/Library/Parse.hs
@@ -39,9 +39,7 @@ removeQuotes = init . tail
separateBy :: Char -> String -> [String]
separateBy char list =
- let f = (\x -> if (x == char)
- then ' '
- else x)
+ let f x = if (x == char) then ' ' else x
in words . (map f) $ list