Skip to content

Commit

Permalink
Remove trailing space in output (fixes #2961)
Browse files Browse the repository at this point in the history
  • Loading branch information
koalaman committed Apr 9, 2024
1 parent 79491db commit 04a8624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ShellCheck/Formatter/TTY.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04a8624

Please sign in to comment.