aboutsummaryrefslogtreecommitdiff
path: root/pandoc.hs
diff options
context:
space:
mode:
authorHenry de Valence <hdevalence@hdevalence.ca>2013-12-19 20:43:25 -0500
committerHenry de Valence <hdevalence@hdevalence.ca>2013-12-19 20:43:25 -0500
commitf6d151889c8fff303be8ee8a4f9be67a04de9210 (patch)
treef8c876bc142e9485dbbf81b26125973edce9dec2 /pandoc.hs
parentc35f5ba42df094cef5f69a191315385a0a1e12b0 (diff)
downloadpandoc-f6d151889c8fff303be8ee8a4f9be67a04de9210.tar.gz
HLint: redundant parens
Remove parens enclosing a single element.
Diffstat (limited to 'pandoc.hs')
-rw-r--r--pandoc.hs6
1 files changed, 2 insertions, 4 deletions
diff --git a/pandoc.hs b/pandoc.hs
index ccd3e57fb..574c89771 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -1034,12 +1034,10 @@ main = do
variables' <- case mathMethod of
LaTeXMathML Nothing -> do
- s <- readDataFileUTF8 datadir
- ("LaTeXMathML.js")
+ s <- readDataFileUTF8 datadir "LaTeXMathML.js"
return $ ("mathml-script", s) : variables
MathML Nothing -> do
- s <- readDataFileUTF8 datadir
- ("MathMLinHTML.js")
+ s <- readDataFileUTF8 datadir "MathMLinHTML.js"
return $ ("mathml-script", s) : variables
_ -> return variables