File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ parseErrorPosition (ParseError _ pos) = pos
37
37
38
38
instance showParseError :: Show ParseError where
39
39
show (ParseError msg pos) =
40
- " (ParseError " <> show msg <> show pos <> " )"
40
+ " (ParseError " <> show msg <> " " <> show pos <> " )"
41
41
42
42
derive instance eqParseError :: Eq ParseError
43
43
derive instance ordParseError :: Ord ParseError
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ newtype Position = Position
16
16
17
17
instance showPosition :: Show Position where
18
18
show (Position { line: line, column: column }) =
19
- " Position { line: " <> show line <> " , column: " <> show column <> " }"
19
+ " ( Position { line: " <> show line <> " , column: " <> show column <> " }) "
20
20
21
21
derive instance eqPosition :: Eq Position
22
22
derive instance ordPosition :: Ord Position
You can’t perform that action at this time.
0 commit comments