Skip to content

Commit

Permalink
Bugfix and fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
schoettl committed Nov 20, 2020
1 parent f97a75b commit c17e923
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Print.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ printShellTest
:: String -- ^ Shelltest format. Value of option @--print[=FORMAT]@.
-> Maybe String -- ^ Value of option @--actual[=MODE]@. @Nothing@ if option is not given.
-> ShellTest -- ^ Test to print
-> Either String String -- ^ Non-matching or matching exit status
-> Either String String -- ^ Non-matching or matching exit status
-> Either String String -- ^ Non-matching or matching stdout
-> Either String String -- ^ Non-matching or matching stderr
-> Either Int Int -- ^ Non-matching or matching exit status
-> IO ()
printShellTest format actualMode ShellTest{command=c,stdin=i,comments=comments,trailingComments=trailingComments,
Expand All @@ -29,7 +29,7 @@ printShellTest format actualMode ShellTest{command=c,stdin=i,comments=comments,t
printComments trailingComments
"v2" -> do
printComments comments
printCommand "$ " c
printCommand "$$$ " c
printStdin "<<<" i
printStdouterr ">>>" o
printStdouterr ">>>2" e
Expand Down

0 comments on commit c17e923

Please sign in to comment.