Remove trailing space in output (fixes #2961)

This commit is contained in:
Vidar Holen 2024-04-08 20:24:28 -07:00
parent 79491db9f6
commit 04a86245a1
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ showFixedString color comments lineNum fileLines =
-- and/or other unrelated lines.
let (excerptFix, excerpt) = sliceFile mergedFix fileLines
-- in the spirit of error prone
putStrLn $ color "message" "Did you mean: "
putStrLn $ color "message" "Did you mean:"
putStrLn $ unlines $ applyFix excerptFix excerpt
cuteIndent :: PositionedComment -> String