Skip to content

Commit d7f1e27

Browse files
XhmikosRtrentmwillis
authored andcommitted
Assorted typo fixes.
1 parent 5742024 commit d7f1e27

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/QUnit/module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ QUnit.module( "Robot", function() {
303303
// ...
304304
} );
305305

306-
// Currenly working on implementing features related to androids
306+
// Currently working on implementing features related to androids
307307
QUnit.module.only( "Android", function( hooks ) {
308308
hooks.beforeEach( function() {
309309
this.android = new Android();
@@ -337,7 +337,7 @@ QUnit.module( "Robot", function() {
337337
// ...
338338
} );
339339

340-
// Tests related to androids are failling due to unkown cause.
340+
// Tests related to androids are failling due to unknown cause.
341341
// Skipping them for now.
342342
QUnit.module.skip( "Android", function( hooks ) {
343343
hooks.beforeEach( function() {

docs/callbacks/QUnit.log.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ The properties of the details argument are listed below as options.
2424
| parameter | description |
2525
|-----------|-------------|
2626
| `result` (boolean) | The boolean result of an assertion, `true` means passed, `false` means failed. |
27-
| `actual` | One side of a comparision assertion. Can be _undefined_ when `ok()` is used. |
28-
| `expected` | One side of a comparision assertion. Can be _undefined_ when `ok()` is used. |
27+
| `actual` | One side of a comparison assertion. Can be _undefined_ when `ok()` is used. |
28+
| `expected` | One side of a comparison assertion. Can be _undefined_ when `ok()` is used. |
2929
| `message` (string) | A string description provided by the assertion. |
3030
| `source` (string) | The associated stacktrace, either from an exception or pointing to the source of the assertion. Depends on browser support for providing stacktraces, so can be undefined. |
3131
| `module` (string) | The test module name of the assertion. If the assertion is not connected to any module, the property's value will be _undefined_. |

docs/config/QUnit.config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ QUnit.config.urlConfig.push({
163163

164164
---
165165

166-
Add a dropdown to the toolbar, using the `urlConfig` property. This assumes there's other code on the page that will check the `QUnit.config.jquery` property to react to the selection, loading the appropiate jQuery Core version.
166+
Add a dropdown to the toolbar, using the `urlConfig` property. This assumes there's other code on the page that will check the `QUnit.config.jquery` property to react to the selection, loading the appropriate jQuery Core version.
167167

168168
```js
169169
QUnit.config.urlConfig.push({

reporter/html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ export function escapeText( s ) {
679679
assertLi,
680680
assertList;
681681

682-
// Update remaing tests to aborted
682+
// Update remaining tests to aborted
683683
if ( abortButton && abortButton.disabled ) {
684684
html = "Tests aborted after " + details.runtime + " milliseconds.";
685685

test/main/promise.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ QUnit.module( "Module with Promise-aware everything", {
126126
}
127127
} );
128128

129-
QUnit.test( "fullfilled Promise", function( assert ) {
129+
QUnit.test( "fulfilled Promise", function( assert ) {
130130
assert.expect( 5 );
131131
return createMockPromise( assert );
132132
} );

test/reporter-urlparams-hidepassed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ QUnit.module( "urlParams hidepassed module", function() {
2424

2525
QUnit.test( "passed", function( assert ) {
2626

27-
// we have to set it to 1 becuase there is currently one item being rendered, this one as it is in progress
27+
// we have to set it to 1 because there is currently one item being rendered, this one as it is in progress
2828
assert.strictEqual( document.getElementById( "qunit-tests" ).children.length, 1 );
2929
} );
3030
} );

0 commit comments

Comments
 (0)