Skip to content

Commit b81e2d1

Browse files
authored
docs: fix several spelling mistakes
1 parent 3ce6d97 commit b81e2d1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ files.
497497

498498
### Bug Fixes
499499

500-
* introduced a bug that resulted in source-maps not being loaded approriately on second test run ([#566](https://github.com/istanbuljs/nyc/issues/566)) ([1bf74fd](https://github.com/istanbuljs/nyc/commit/1bf74fd))
500+
* introduced a bug that resulted in source-maps not being loaded appropriately on second test run ([#566](https://github.com/istanbuljs/nyc/issues/566)) ([1bf74fd](https://github.com/istanbuljs/nyc/commit/1bf74fd))
501501

502502

503503

@@ -726,7 +726,7 @@ files.
726726

727727
### Features
728728

729-
* upgrade to new test-exclude; with suppport for node_modules, and empty exclude ([#348](https://github.com/bcoe/nyc/issues/348)) ([d616ffc](https://github.com/bcoe/nyc/commit/d616ffc))
729+
* upgrade to new test-exclude; with support for node_modules, and empty exclude ([#348](https://github.com/bcoe/nyc/issues/348)) ([d616ffc](https://github.com/bcoe/nyc/commit/d616ffc))
730730

731731

732732
### BREAKING CHANGES
@@ -742,7 +742,7 @@ files.
742742
### Bug Fixes
743743

744744
* make --all flag work with files with extensions other than .js ([#326](https://github.com/bcoe/nyc/issues/326)) ([d0a8674](https://github.com/bcoe/nyc/commit/d0a8674))
745-
* work around for Windows path issue nodejs/node[#6624](https://github.com/bcoe/nyc/issues/6624) ([6b1fed0](https://github.com/bcoe/nyc/commit/6b1fed0))
745+
* workaround for Windows path issue nodejs/node[#6624](https://github.com/bcoe/nyc/issues/6624) ([6b1fed0](https://github.com/bcoe/nyc/commit/6b1fed0))
746746

747747

748748
### Features
@@ -882,7 +882,7 @@ files.
882882

883883
### Features
884884

885-
* better docs for excluding, thanks @kentdodds \o/ ([22b06fe](https://github.com/bcoe/nyc/commit/22b06fe))
885+
* better docs for excluding, thanks @kentcdodds \o/ ([22b06fe](https://github.com/bcoe/nyc/commit/22b06fe))
886886
* updating dependencies (spawn wrap with npm patches \o/) ([ac841b8](https://github.com/bcoe/nyc/commit/ac841b8))
887887

888888

@@ -920,7 +920,7 @@ files.
920920

921921
### v6.1.0 (2016/03/12 15:00 +7:00)
922922

923-
- [#191](https://github.com/bcoe/nyc/pull/191) upgrade to non-singleton verison of yargs (@bcoe)
923+
- [#191](https://github.com/bcoe/nyc/pull/191) upgrade to non-singleton version of yargs (@bcoe)
924924
- [#185](https://github.com/bcoe/nyc/pull/185) default to long-form option names so that they can be overridden in package.json (@rapzo)
925925
- [#180](https://github.com/bcoe/nyc/pull/180) fix bug with findUp (@bcoe)
926926
- [#178](https://github.com/bcoe/nyc/pull/178) --all should handle extensions other than .js. (@lloydcotten)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ nyc --require esm mocha
258258
### Interaction with `--all` flag
259259

260260
The `--require` flag also operates on the main nyc process for use by `--all`.
261-
For example, in situations with `nyc --all --instrument false` and [`babel-plugin-istanbul`] setup the `--all` option only works if `--require @babel/register` is passed to nyc.
261+
For example, in situations with `nyc --all --instrument false` and [`babel-plugin-istanbul`] set up the `--all` option only works if `--require @babel/register` is passed to nyc.
262262
Passing it to mocha would cause the tests to be instrumented but unloaded sources would not be seen.
263263
The [`@istanbuljs/nyc-config-babel`] package handles this for you!
264264

docs/profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cd /user/dev/ava
2929
npm link nyc
3030
```
3131

32-
This will likely not work with `tap --coverage`, since tap will try to use it's own older copy of nyc instead of your globally linked one. Modify the test script in your test project so it uses the `nyc` binary directly, and disable `tap`s version with the `--no-cov` flag:
32+
This will likely not work with `tap --coverage`, since tap will try to use its own older copy of nyc instead of your globally linked one. Modify the test script in your test project so it uses the `nyc` binary directly, and disable `tap`s version with the `--no-cov` flag:
3333

3434
`package.json`:
3535

test/nyc-integration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ t.test('extracts coverage headers from unexecuted files', async t => {
359359

360360
t.ok(coverage.length !== 0)
361361
t.ok(coverage.every(data => typeof data === 'object'))
362-
// we should not have executed file, so all counts sould be 0.
362+
// we should not have executed file, so all counts should be 0.
363363
t.ok(coverage.every(data => Object.values(data.s).every(s => s === 0)))
364364
})
365365

0 commit comments

Comments
 (0)