summaryrefslogtreecommitdiff
path: root/Coalpit/DSV.hs
diff options
context:
space:
mode:
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