Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 15430ba

Browse files
committed
Alignment.
1 parent 0254bc9 commit 15430ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

semantic-core/src/Data/Core/Parser.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ lit = let x `given` n = x <$ reserved n in choice
112112
, between (string "\"") (string "\"") (Core.string . fromString <$> many (escape <|> (noneOf "\"" <?> "non-escaped character")))
113113
] <?> "literal"
114114
where escape = char '\\' *> choice
115-
[ '"' <$ string "\""
115+
[ '"' <$ string "\""
116116
, '\n' <$ string "n"
117117
, '\r' <$ string "r"
118118
, '\t' <$ string "t"

0 commit comments

Comments
 (0)