summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Compile
diff options
context:
space:
mode:
authorInari Listenmaa <inari.listenmaa@gmail.com>2020-07-31 15:16:45 +0200
committerInari Listenmaa <inari.listenmaa@gmail.com>2020-07-31 15:16:45 +0200
commit868566a31921e1f39881ac5adcc1308131050eca (patch)
tree99199bb34269cab1dbad5be226b0e66702f05738 /src/compiler/GF/Compile
parentaeabc955c8b107e5467cb6b384b40320fb453176 (diff)
Remove accidentally added space character in deriving clause.
Diffstat (limited to 'src/compiler/GF/Compile')
-rw-r--r--src/compiler/GF/Compile/PGFtoHaskell.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/PGFtoHaskell.hs b/src/compiler/GF/Compile/PGFtoHaskell.hs
index 41f928d31..6cb078625 100644
--- a/src/compiler/GF/Compile/PGFtoHaskell.hs
+++ b/src/compiler/GF/Compile/PGFtoHaskell.hs
@@ -119,7 +119,7 @@ hDatatype gId derivingClause lexical (cat,rules) =
"data" +++ gId cat +++ "=" ++
(if length rules == 1 then "" else "\n ") +++
foldr1 (\x y -> x ++ "\n |" +++ y) constructors ++++
- " " +++ derivingClause
+ " " +++ derivingClause
where
constructors = [gId f +++ foldr (+++) "" (map (gId) xx) | (f,xx) <- nonLexicalRules (lexical cat) rules]
++ if lexical cat then [lexicalConstructor cat +++ "String"] else []