Skip to content

Commit 4b35ba8

Browse files
committed
Docs: Fix more spelling mistakes caught by aspell
Ref https://github.com/Krinkle/dotfiles/blob/v2024.07/Extended-Mind.md#aspell
1 parent 5d85640 commit 4b35ba8

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

History.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ FYI:
735735

736736
* Core: Prevent multiple "begin" events from calling `QUnit.load()`.
737737
* Core: Use callback-based pause/resume for better multi-pause isolation.
738-
* HTML Reporter: Fix apply/reset button visibilty.
738+
* HTML Reporter: Fix apply/reset button visibility.
739739
* Core: Ensure runtime for skipped tests is 0.
740740
* Dump: New parser for `Symbol` type.
741741

@@ -1041,7 +1041,7 @@ FYI:
10411041
==================
10421042

10431043
* Core: A test without any assertions now fails by default, unless [`assert.expect(0)`](https://qunitjs.com/api/assert/expect/) is called. [#178](https://github.com/qunitjs/qunit/issues/178)
1044-
* Core: Add `QUnit.pushFailure` to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with catched exceptions (useful even in Safari). [#210](https://github.com/qunitjs/qunit/issues/210)
1044+
* Core: Add `QUnit.pushFailure` to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with caught exceptions (useful even in Safari). [#210](https://github.com/qunitjs/qunit/issues/210)
10451045
* Core: Apply [`notrycatch` option](https://qunitjs.com/api/config/notrycatch/) to setup and teardown hooks. [#203](https://github.com/qunitjs/qunit/issues/203) [#204](https://github.com/qunitjs/qunit/issues/204)
10461046
* Core: Extend exports object with QUnit properties at the end of the file to export everything.
10471047
* Core: Prefix test-related session-storage items to make removal more specific. [#213](https://github.com/qunitjs/qunit/issues/213)

docs/_posts/2012-03-10-qunit-1-4-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
## Changelog
1010

1111
* Core: A test without any assertions now fails by default, unless [`assert.expect(0)`](https://qunitjs.com/api/assert/expect/) is called. [#178](https://github.com/qunitjs/qunit/issues/178)
12-
* Core: Add `QUnit.pushFailure` to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with catched exceptions (useful even in Safari). [#210](https://github.com/qunitjs/qunit/issues/210)
12+
* Core: Add `QUnit.pushFailure` to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with caught exceptions (useful even in Safari). [#210](https://github.com/qunitjs/qunit/issues/210)
1313
* Core: Apply [`notrycatch` option](https://qunitjs.com/api/config/notrycatch/) to setup and teardown hooks. [#203](https://github.com/qunitjs/qunit/issues/203) [#204](https://github.com/qunitjs/qunit/issues/204)
1414
* Core: Extend exports object with QUnit properties at the end of the file to export everything.
1515
* Core: Prefix test-related session-storage items to make removal more specific. [#213](https://github.com/qunitjs/qunit/issues/213)

docs/_posts/2016-04-21-introduce-multi-select-module-picker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This replaces the module select dropdown with a dropdown that opens up into a mu
1515
* Multi-select window with checkboxes and scrolling.
1616
* Search box for filtering by module or test name.
1717
* "Apply" button to run selected tests or modules.
18-
* "Reset" button to clear selection, returnig to implied default of "Select all".
18+
* "Reset" button to clear selection, returning to implied default of "Select all".
1919

2020
## Accessibility
2121

docs/_posts/2016-07-23-qunit-2-0-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tags:
1010

1111
* Core: Prevent multiple "begin" events from calling `QUnit.load()`.
1212
* Core: Use callback-based pause/resume for better multi-pause isolation.
13-
* HTML Reporter: Fix apply/reset button visibilty.
13+
* HTML Reporter: Fix apply/reset button visibility.
1414
* Core: Ensure runtime for skipped tests is 0.
1515
* Dump: New parser for `Symbol` type.
1616

docs/_posts/2025-01-19-stacktrace-cleaner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Notice the removal of the first `qunit.js` call, which lets the trace starts cle
141141

142142
### Trimming traces
143143

144-
For assertion failures and uncaught exceptions alike, we only trim internal frames from the start or end of a stack. Removing frames from the middle would falsely present a call relationship that never happend, and would cause confusion among developers. Instead, frames we can't trim, are greyed out instead. This is similar to Node.js's own error formatter does.
144+
For assertion failures and uncaught exceptions alike, we only trim internal frames from the start or end of a stack. Removing frames from the middle would falsely present a call relationship that never happened, and would cause confusion among developers. Instead, frames we can't trim, are greyed out instead. This is similar to Node.js's own error formatter does.
145145

146146
## TAP reporter
147147

docs/api/QUnit/module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ QUnit.module('MyGroup', (hooks) => {
415415
});
416416
```
417417

418-
Another way that this might happen is if you have named them differently, or perhaps mispelled one, and are referring to the outer parameter from the inner module. Is is recommended to name hooks parameters the same, as this will naturally refer to the correct and closest one always, thus avoiding any mistake.
418+
Another way that this might happen is if you have named them differently, or perhaps misspelled one, and are referring to the outer parameter from the inner module. Is is recommended to name hooks parameters the same, as this will naturally refer to the correct and closest one always, thus avoiding any mistake.
419419

420420
```js
421421
QUnit.module('MyGroup', (hooksOuter) => {

docs/api/QUnit/test.each.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ QUnit.test.each('square', [
194194

195195
You can give each item in your data set a custom name, by wrapping the data in an object instead of an array. The object key becomes the test case name.
196196

197-
For example, you can self-document each item to more cleary convey what aspect or behavior you want to cover with that test.
197+
For example, you can self-document each item to more clearly convey what aspect or behavior you want to cover with that test.
198198

199199
```js
200200
function square (x) {

docs/api/QUnit/test.if.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ QUnit.test('render', function (assert) {
6060
});
6161
```
6262

63-
### Legacy idom
63+
### Legacy idiom
6464

6565
Prior to QUnit 2.22, the following shortcuts were sometimes used. This may be replaced by `QUnit.test.if()`.
6666

docs/api/config/fixture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ QUnit automatically resets the contents of `<div id="qunit-fixture">`. This give
2626

2727
By starting with an empty fixture in your test HTML file, you effectively give each test a clean start, as QUnit will automatically remove anything that was added or staged there before the next test begins.
2828

29-
If many of your tests require the same markup, you can also set it inside the fixture ahead of time. This reduces duplication between tests. QUnit guruantees that each test will start with a fresh copy of the original fixture, undoing any changes that happened during any previous tests.
29+
If many of your tests require the same markup, you can also set it inside the fixture ahead of time. This reduces duplication between tests. QUnit guarantees that each test will start with a fresh copy of the original fixture, undoing any changes that happened during any previous tests.
3030

3131
You can define a custom fixture in one of two ways:
3232

docs/api/config/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Preconfig allows integrations to declare configuration without needing to embed,
7676

7777
*Version added: [QUnit 2.21.0](https://github.com/qunitjs/qunit/releases/tag/2.21.0)*.
7878

79-
Flat preconfig allows multiple integrations to seemlessly collaborate, without the risk of projects accidentally unsetting an override (as is the case with Object preconfig).
79+
Flat preconfig allows multiple integrations to seamlessly collaborate, without the risk of projects accidentally unsetting an override (as is the case with Object preconfig).
8080

8181
In browser environments, global variables that start with `qunit_config_` may override the default value of a configuration option. The following inline script (before loading QUnit), is equivalent to setting `QUnit.config.hidepassed = true; QUnit.config.seed = 'd84af39036'; QUnit.config.testTimeout = 1000;`
8282

0 commit comments

Comments
 (0)