aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Grimaud <grimaud.pierre@gmail.com>2020-04-29 21:18:23 +0200
committerGitHub <noreply@github.com>2020-04-29 21:18:23 +0200
commit1a7332ce83cdee7d6cd9d45c2a4b83067f53f14b (patch)
treea14c3d6d6a9484c14f8322add3197ab9921e1648
parentdc06d68bdc4c2562b5cc530f21e668a17d78ee2d (diff)
downloadjquery-1a7332ce83cdee7d6cd9d45c2a4b83067f53f14b.tar.gz
jquery-1a7332ce83cdee7d6cd9d45c2a4b83067f53f14b.zip
Docs: Fix typos
Closes gh-4686
-rw-r--r--build/fixtures/README.md2
-rw-r--r--test/unit/manipulation.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/build/fixtures/README.md b/build/fixtures/README.md
index 195fef67a..0c057bae8 100644
--- a/build/fixtures/README.md
+++ b/build/fixtures/README.md
@@ -29,7 +29,7 @@ import $ from "jquery";
#### Browserify/Webpack
-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...
+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...
```js
var $ = require( "jquery" );
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index 45946c355..c59a4868f 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -214,12 +214,12 @@ function testAppend( valueObj, assert ) {
jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest2' type='radio' checked = 'checked' />" ) );
jQuery( "#qunit-fixture form input[name=radiotest2]" ).each( function() {
- assert.ok( jQuery( this ).is( ":checked" ), "Append alternately formated checked radio" );
+ assert.ok( jQuery( this ).is( ":checked" ), "Append alternately formatted checked radio" );
} ).remove();
jQuery( "#qunit-fixture form" ).append( valueObj( "<input name='radiotest3' type='radio' checked />" ) );
jQuery( "#qunit-fixture form input[name=radiotest3]" ).each( function() {
- assert.ok( jQuery( this ).is( ":checked" ), "Append HTML5-formated checked radio" );
+ assert.ok( jQuery( this ).is( ":checked" ), "Append HTML5-formatted checked radio" );
} ).remove();
jQuery( "#qunit-fixture form" ).append( valueObj( "<input type='radio' checked='checked' name='radiotest4' />" ) );