Skip to content

Commit 9818240

Browse files
authored
docs(README): minor grammar/caps (#14)
1 parent 695752b commit 9818240

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Coverage Status](https://coveralls.io/repos/yargs/set-blocking/badge.svg?branch=)](https://coveralls.io/r/yargs/set-blocking?branch=master)
66
[![Standard Version](https://img.shields.io/badge/release-standard%20version-brightgreen.svg)](https://github.com/conventional-changelog/standard-version)
77

8-
set blocking `stdio` and `stderr` ensuring that terminal output does not truncate.
8+
Set blocking `stdio` and `stderr` ensuring that terminal output does not truncate.
99

1010
```js
1111
const setBlocking = require('set-blocking')
@@ -20,10 +20,10 @@ newer versions of Node.js (`0.12+`), truncating terminal output.
2020

2121
You should be mindful of the side-effects caused by using `set-blocking`:
2222

23-
* if your module sets blocking to `true`, it will effect other modules
23+
* If your module sets blocking to `true`, it will affect other modules
2424
consuming your library. In [yargs](https://github.com/yargs/yargs/blob/master/yargs.js#L653) we only call
2525
`setBlocking(true)` once we already know we are about to call `process.exit(code)`.
26-
* this patch will not apply to subprocesses spawned with `isTTY = true`, this is
26+
* This patch will not apply to subprocesses spawned with `isTTY = true`, this is
2727
the [default `spawn()` behavior](https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options).
2828

2929
## License

0 commit comments

Comments
 (0)