Skip to content

Commit d6be22c

Browse files
committed
Merge pull request #24 from gkoz/patch-1
Fix stderr caption typo
2 parents 67b7499 + 048a7bc commit d6be22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ impl fmt::Display for Error {
218218
try!(write!(f, "\n--- stdout\n{}", stdout));
219219
}
220220
if !stderr.is_empty() {
221-
try!(write!(f, "\n--- stdout\n{}", stderr));
221+
try!(write!(f, "\n--- stderr\n{}", stderr));
222222
}
223223
Ok(())
224224
}

0 commit comments

Comments
 (0)