Skip to content

Commit d79b665

Browse files
committed
Use string concat
1 parent 07bd7b7 commit d79b665

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Aeson/Parser/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ eitherDecodeWith p to s =
279279
where
280280
buildMsg [] msg = msg
281281
buildMsg (expectation:_) msg =
282-
msg <> ". Expecting " <> expectation
282+
msg ++ ". Expecting " ++ expectation
283283
{-# INLINE eitherDecodeWith #-}
284284

285285
eitherDecodeStrictWith :: Parser Value -> (Value -> IResult a) -> B.ByteString

0 commit comments

Comments
 (0)