]> source.dussan.org Git - jquery.git/commitdiff
Docs: Fix various spelling mistakes
authorBruno Pérel <brunoperel@gmail.com>
Thu, 30 Jul 2015 13:34:34 +0000 (15:34 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Thu, 30 Jul 2015 13:47:23 +0000 (15:47 +0200)
Closes gh-2487

build/release/dist.js
test/data/support/csp.php
test/unit/css.js
test/unit/event.js
test/unit/manipulation.js
test/unit/tween.js

index f17ea4ba70bfcfc411a4719552e68ceedb7ad66a..8ef6faf8609a05cd05dcc8aee186df3e8b80d719 100644 (file)
@@ -5,7 +5,7 @@ module.exports = function( Release, complete ) {
                shell = require( "shelljs" ),
                pkg = require( Release.dir.repo + "/package.json" ),
                distRemote = Release.remote.replace( "jquery.git", "jquery-dist.git" ),
-               // These files are included with the distrubtion
+               // These files are included with the distribution
                files = [
                        "src",
                        "LICENSE.txt",
index d01def783f081194b902eaeb0ec3eb86a242bdbb..0783e1774b3b4787a4683281a14e1af1e793360f 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-       # This test page checkes CSP only for browsers with "Content-Security-Policy" header support
+       # This test page checks CSP only for browsers with "Content-Security-Policy" header support
        # i.e. no old WebKit or old Firefox
        header("Content-Security-Policy: default-src 'self'; report-uri csp-log.php");
 ?>
index 181695b706863264421bd1e0abdcad9d1625a823..b4337a1eac92ca7f4842aad5ecb2d8aaa76cdb22 100644 (file)
@@ -29,7 +29,7 @@ test("css(String|Hash)", function() {
 
        equal( div2.find("input").css("height"), "20px", "Height on hidden input." );
        equal( div2.find("textarea").css("height"), "20px", "Height on hidden textarea." );
-       equal( div2.find("div").css("height"), "20px", "Height on hidden textarea." );
+       equal( div2.find("div").css("height"), "20px", "Height on hidden div." );
 
        div2.remove();
 
index ba3d9481a7f6c14b558ddd29082c05793a808499..46a9d7269945ab66a5ccecf9a179e58bfa657b88 100644 (file)
@@ -2725,7 +2725,7 @@ test( "Donor event interference", function( assert ) {
        jQuery( "#donor-input" )[ 0 ].click();
 } );
 
-test( "originalEvent property for Chrome, Safari and FF of simualted event", function( assert ) {
+test( "originalEvent property for Chrome, Safari and FF of simulated event", function( assert ) {
        var userAgent = window.navigator.userAgent;
 
        if ( !(/chrome/i.test( userAgent ) ||
index fffbf38ceaa1cb80d7f54d26995018518a0e90d2..7befa29c4d170b21e3d479acbb5c82e491536322 100644 (file)
@@ -498,7 +498,7 @@ test( "html(String) tag-hyphenated elements (Bug #1987)", function() {
        var j = jQuery("<tr-multiple-hyphens><td-with-hyphen>text</td-with-hyphen></tr-multiple-hyphens>");
        ok( jQuery.nodeName(j[0], "TR-MULTIPLE-HYPHENS"), "Tags with multiple hypens" );
        ok( jQuery.nodeName(j.children()[0], "TD-WITH-HYPHEN"), "Tags with multiple hypens" );
-       equal( j.children().text(), "text", "Tags with multple hypens behave normally" );
+       equal( j.children().text(), "text", "Tags with multiple hypens behave normally" );
 });
 
 test( "IE8 serialization bug", function() {
index 39894c57573467097d65ab0718105ef07de231c8..1386c2878bddcf6c75edac1257a0b0f47431da89 100644 (file)
@@ -289,7 +289,7 @@ test( "jQuery.Tween - custom propHooks - advanced values", function() {
 
        // Some day this NaN assumption might change - perhaps add a "calc" helper to the hooks?
        ok( isNaN( tween.now ), "Used return value from propHook.get" );
-       equal( tween.pos, 0.5, "But the eased percent is still avaliable" );
+       equal( tween.pos, 0.5, "But the eased percent is still available" );
        ok( propHook.set.calledWith( tween ), "Called propHook.set function with correct parameters" );
 
        delete jQuery.Tween.propHooks.testHooked;