]> source.dussan.org Git - jquery.git/commitdiff
Docs: Fix typos
authorPierre Grimaud <grimaud.pierre@gmail.com>
Wed, 29 Apr 2020 19:18:23 +0000 (21:18 +0200)
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Wed, 29 Apr 2020 19:18:55 +0000 (21:18 +0200)
Closes gh-4686

(cherry picked from commit 1a7332ce83cdee7d6cd9d45c2a4b83067f53f14b)

build/fixtures/README.md
test/unit/manipulation.js

index 195fef67a61323577c158275db1332fa304596e5..0c057bae8732c6ac053a82c1e5c9905c2b800b0a 100644 (file)
@@ -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" );
index c997d7535d99b572b3f52fd122c2e9e48dcad6a6..39aa86a3aeba08291eeb40eb9a164a5ef3a3f767 100644 (file)
@@ -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' />" ) );