Skip to content

Commit c17e923

Browse files
committed
Bugfix and fix comments
1 parent f97a75b commit c17e923

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Print.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ printShellTest
1010
:: String -- ^ Shelltest format. Value of option @--print[=FORMAT]@.
1111
-> Maybe String -- ^ Value of option @--actual[=MODE]@. @Nothing@ if option is not given.
1212
-> ShellTest -- ^ Test to print
13-
-> Either String String -- ^ Non-matching or matching exit status
14-
-> Either String String -- ^ Non-matching or matching exit status
13+
-> Either String String -- ^ Non-matching or matching stdout
14+
-> Either String String -- ^ Non-matching or matching stderr
1515
-> Either Int Int -- ^ Non-matching or matching exit status
1616
-> IO ()
1717
printShellTest format actualMode ShellTest{command=c,stdin=i,comments=comments,trailingComments=trailingComments,
@@ -29,7 +29,7 @@ printShellTest format actualMode ShellTest{command=c,stdin=i,comments=comments,t
2929
printComments trailingComments
3030
"v2" -> do
3131
printComments comments
32-
printCommand "$ " c
32+
printCommand "$$$ " c
3333
printStdin "<<<" i
3434
printStdouterr ">>>" o
3535
printStdouterr ">>>2" e

0 commit comments

Comments
 (0)