summaryrefslogtreecommitdiff
path: root/Coalpit/DSV.hs
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2017-12-20 05:43:32 +0300
committerdefanor <defanor@uberspace.net>2017-12-20 05:43:32 +0300
commitc9b893cd0343aab8b68b5a2c1e5400c164bb2ba6 (patch)
tree28340df5fcf83fb49ff1f45c38da0d35af3fa201 /Coalpit/DSV.hs
parente7489043d8bf2a406a910adcb93280e83d6d2faa (diff)
Add Coalpit.IO
Diffstat (limited to 'Coalpit/DSV.hs')
-rw-r--r--Coalpit/DSV.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Coalpit/DSV.hs b/Coalpit/DSV.hs
index 2ba9464..890399d 100644
--- a/Coalpit/DSV.hs
+++ b/Coalpit/DSV.hs
@@ -52,7 +52,7 @@ parseDSVLine fs l = case parse (pDSVLine fs) "line" l of
-- | Shows values in DSV format.
showDSV :: Coalpit a => Options -> a -> String
-showDSV opt = composeDSVLine (fieldSeparator opt) . (toArgs opt)
+showDSV opt = composeDSVLine (fieldSeparator opt) . toArgs opt
-- | Reads values from DSV format.
readDSV :: Coalpit a => Options -> String -> Either String a