Skip to content

Commit

Permalink
chore: fix spelling issues (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Oct 4, 2023
1 parent 63cd2d1 commit 8caf771
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions packages/istanbul-lib-hook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### BREAKING CHANGES

* the closure provied to hookRequire, hookRunInThisContext, etc., is now passed an object with a filename member, rather than a string representing filename.
* the closure provided to hookRequire, hookRunInThisContext, etc., is now passed an object with a filename member, rather than a string representing filename.



Expand All @@ -124,7 +124,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* pass correct args to tranformer ([#153](https://github.com/istanbuljs/istanbuljs/issues/153)) ([#154](https://github.com/istanbuljs/istanbuljs/issues/154)) ([2b2250f](https://github.com/istanbuljs/istanbuljs/commit/2b2250f))
* pass correct args to transformer ([#153](https://github.com/istanbuljs/istanbuljs/issues/153)) ([#154](https://github.com/istanbuljs/istanbuljs/issues/154)) ([2b2250f](https://github.com/istanbuljs/istanbuljs/commit/2b2250f))



Expand Down
8 changes: 4 additions & 4 deletions packages/istanbul-lib-instrument/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* **build:** verfiy automated publication ([b232690](https://www.github.com/istanbuljs/istanbuljs/commit/b232690193f4b524332046c96dd1cdc6e881c6c7))
* **build:** verify automated publication ([b232690](https://www.github.com/istanbuljs/istanbuljs/commit/b232690193f4b524332046c96dd1cdc6e881c6c7))

### [5.0.1](https://www.github.com/istanbuljs/istanbuljs/compare/istanbul-lib-instrument-v5.0.0...istanbul-lib-instrument-v5.0.1) (2021-09-13)


### Bug Fixes

* **build:** verfiy automated publication ([74c96bd](https://www.github.com/istanbuljs/istanbuljs/commit/74c96bdc4224a06e2e1166ebd9adf8faf28438b1))
* **build:** verify automated publication ([74c96bd](https://www.github.com/istanbuljs/istanbuljs/commit/74c96bdc4224a06e2e1166ebd9adf8faf28438b1))

## [5.0.0](https://www.github.com/istanbuljs/istanbuljs/compare/istanbul-lib-instrument-v4.0.3...istanbul-lib-instrument-v5.0.0) (2021-09-13)

Expand Down Expand Up @@ -357,7 +357,7 @@ plugin. Add it to get tests working again, commit updated api.md.

### Bug Fixes

* parenthesize superClass on non-idetifier case ([#158](https://github.com/istanbuljs/istanbuljs/issues/158)) ([6202c88](https://github.com/istanbuljs/istanbuljs/commit/6202c88))
* parenthesize superClass on non-identifier case ([#158](https://github.com/istanbuljs/istanbuljs/issues/158)) ([6202c88](https://github.com/istanbuljs/istanbuljs/commit/6202c88))


### Chores
Expand All @@ -378,7 +378,7 @@ plugin. Add it to get tests working again, commit updated api.md.

### Bug Fixes

* default value for ignorelassMethods ([#151](https://github.com/istanbuljs/istanbuljs/issues/151)) ([5dd88e8](https://github.com/istanbuljs/istanbuljs/commit/5dd88e8))
* default value for ignoreClassMethods ([#151](https://github.com/istanbuljs/istanbuljs/issues/151)) ([5dd88e8](https://github.com/istanbuljs/istanbuljs/commit/5dd88e8))



Expand Down
2 changes: 1 addition & 1 deletion packages/istanbul-lib-instrument/src/visitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class VisitState {
}

// all the generic stuff on exit of a node,
// including reseting ignores and custom node attrs
// including resetting ignores and custom node attrs
onExit(path) {
// restore ignore status, if needed
if (path.node === this.nextIgnore) {
Expand Down
2 changes: 1 addition & 1 deletion packages/istanbul-lib-instrument/test/specs/if.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: simple if statment
name: simple if statement
code: |
output = -1;
if (args[0] > args [1])
Expand Down
2 changes: 1 addition & 1 deletion packages/istanbul-lib-report/lib/report-base.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

// TODO: switch to class private field when targetting node.js 12
// TODO: switch to class private field when targeting node.js 12
const _summarizer = Symbol('ReportBase.#summarizer');

class ReportBase {
Expand Down
2 changes: 1 addition & 1 deletion packages/istanbul-reports/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### Bug Fixes

* update dependendencies due to vulnerabilities ([#294](https://github.com/istanbuljs/istanbuljs/issues/294)) ([4c14fed](https://github.com/istanbuljs/istanbuljs/commit/4c14fed))
* update dependencies due to vulnerabilities ([#294](https://github.com/istanbuljs/istanbuljs/issues/294)) ([4c14fed](https://github.com/istanbuljs/istanbuljs/commit/4c14fed))



Expand Down
4 changes: 2 additions & 2 deletions packages/istanbul-reports/lib/html/annotator.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function annotateBranches(fileCoverage, structuredText) {
branchMeta[branchName].type === 'if' &&
// Check if the branch has an implicit else.
branchArray.length === 2 &&
// Check if the implicit else branch is unnacounted for.
// Check if the implicit else branch is unaccounted for.
metaArray.length === 1 &&
// Check if the implicit else branch is uncovered.
branchArray[1] === 0
Expand Down Expand Up @@ -207,7 +207,7 @@ function annotateBranches(fileCoverage, structuredText) {
text = structuredText[startLine].text;
if (branchMeta[branchName].type === 'if') {
// 'if' is a special case
// since the else branch might not be visible, being non-existent
// since the else branch might not be visible, being nonexistent
text.insertAt(
startCol,
lt +
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "coalescense ranges of missing lines",
"title": "coalesce ranges of missing lines",
"opts": {
"maxCols": 80,
"projectRoot": "/"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "different path files in seperate packages",
"title": "different path files in separate packages",
"opts": {
"maxCols": 80,
"projectRoot": "/Users/jschmidle/oss/istanbuljs-test/"
Expand Down

0 comments on commit 8caf771

Please sign in to comment.