From: Pierre Grimaud Date: Wed, 29 Apr 2020 19:18:23 +0000 (+0200) Subject: Docs: Fix typos X-Git-Tag: 3.5.1~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ea3766c08156541617ca3d15755a9ade8fdedcc0;p=jquery.git Docs: Fix typos Closes gh-4686 (cherry picked from commit 1a7332ce83cdee7d6cd9d45c2a4b83067f53f14b) --- 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 c997d7535..39aa86a3a 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( "" ) ); 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( "" ) ); 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( "" ) );