Skip to content

Commit 589558a

Browse files
committed
Minor README tweak.
1 parent 41ba977 commit 589558a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ Install the module with: `npm install exit`
1717
var exit = require('exit');
1818

1919
// These lines should appear in the output, EVEN ON WINDOWS.
20-
console.log("foo");
21-
console.error("bar");
20+
console.log("omg");
21+
console.error("yay");
2222

2323
// process.exit(5);
2424
exit(5);
2525

2626
// These lines shouldn't appear in the output.
27-
console.log("foo");
28-
console.error("bar");
27+
console.log("wtf");
28+
console.error("bro");
2929
```
3030

3131
## Don't believe me? Try it for yourself.

0 commit comments

Comments
 (0)