summaryrefslogtreecommitdiffhomepage
path: root/Parsers.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Parsers.hs')
-rw-r--r--Parsers.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parsers.hs b/Parsers.hs
index 8792a69..8867dba 100644
--- a/Parsers.hs
+++ b/Parsers.hs
@@ -73,7 +73,7 @@ templateStringParser c = do
templateCommandParser :: Config -> Parser String
templateCommandParser c =
let chr = char . head . sepChar
- in between (chr c) (chr c) (allTillSep c)
+ in between (chr c) (chr c) (allTillSep c)
-- | Combines the template parsers
templateParser :: Config -> Parser [(String,String,String)]