Skip to content

Commit 1a7332c

Browse files
authored
Docs: Fix typos
Closes gh-4686
1 parent dc06d68 commit 1a7332c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build/fixtures/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import $ from "jquery";
2929

3030
#### Browserify/Webpack
3131

32-
There are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documention. In the script, including jQuery will usually look like this...
32+
There are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documentation. In the script, including jQuery will usually look like this...
3333

3434
```js
3535
var $ = require( "jquery" );

test/unit/manipulation.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,12 +214,12 @@ function testAppend( valueObj, assert ) {
214214

215215
jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest2' type='radio' checked = 'checked' />" ) );
216216
jQuery( "#qunit-fixture form input[name=radiotest2]" ).each( function() {
217-
assert.ok( jQuery( this ).is( ":checked" ), "Append alternately formated checked radio" );
217+
assert.ok( jQuery( this ).is( ":checked" ), "Append alternately formatted checked radio" );
218218
} ).remove();
219219

220220
jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest3' type='radio' checked />" ) );
221221
jQuery( "#qunit-fixture form input[name=radiotest3]" ).each( function() {
222-
assert.ok( jQuery( this ).is( ":checked" ), "Append HTML5-formated checked radio" );
222+
assert.ok( jQuery( this ).is( ":checked" ), "Append HTML5-formatted checked radio" );
223223
} ).remove();
224224

225225
jQuery( "#qunit-fixture form" ).append( valueObj( "<input type='radio' checked='checked' name='radiotest4' />" ) );

0 commit comments

Comments
 (0)