Skip to content

Commit 6af92ca

Browse files
bperelmgol
authored andcommitted
Docs: Fix various spelling mistakes
(cherry-picked from 360a478) Closes gh-2487
1 parent 624d6a8 commit 6af92ca

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build/release/dist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = function( Release, complete ) {
55
shell = require( "shelljs" ),
66
pkg = require( Release.dir.repo + "/package.json" ),
77
distRemote = Release.remote.replace( "jquery.git", "jquery-compat-dist.git" ),
8-
// These files are included with the distrubtion
8+
// These files are included with the distribution
99
files = [
1010
"src",
1111
"LICENSE.txt",

test/data/support/csp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
# This test page checkes CSP only for browsers with "Content-Security-Policy" header support
2+
# This test page checks CSP only for browsers with "Content-Security-Policy" header support
33
# i.e. no old WebKit or old Firefox
44
header("Content-Security-Policy: default-src 'self'; report-uri csp-log.php");
55
?>

test/unit/css.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test("css(String|Hash)", function() {
2929

3030
equal( div2.find("input").css("height"), "20px", "Height on hidden input." );
3131
equal( div2.find("textarea").css("height"), "20px", "Height on hidden textarea." );
32-
equal( div2.find("div").css("height"), "20px", "Height on hidden textarea." );
32+
equal( div2.find("div").css("height"), "20px", "Height on hidden div." );
3333

3434
div2.remove();
3535

test/unit/manipulation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ test( "html(String) tag-hyphenated elements (Bug #1987)", function() {
548548
var j = jQuery("<tr-multiple-hyphens><td-with-hyphen>text</td-with-hyphen></tr-multiple-hyphens>");
549549
ok( jQuery.nodeName(j[0], "TR-MULTIPLE-HYPHENS"), "Tags with multiple hypens" );
550550
ok( jQuery.nodeName(j.children()[0], "TD-WITH-HYPHEN"), "Tags with multiple hypens" );
551-
equal( j.children().text(), "text", "Tags with multple hypens behave normally" );
551+
equal( j.children().text(), "text", "Tags with multiple hypens behave normally" );
552552
});
553553

554554
test( "IE8 serialization bug", function() {

test/unit/tween.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ test( "jQuery.Tween - custom propHooks - advanced values", function() {
290290

291291
// Some day this NaN assumption might change - perhaps add a "calc" helper to the hooks?
292292
ok( isNaN( tween.now ), "Used return value from propHook.get" );
293-
equal( tween.pos, 0.5, "But the eased percent is still avaliable" );
293+
equal( tween.pos, 0.5, "But the eased percent is still available" );
294294
ok( propHook.set.calledWith( tween ), "Called propHook.set function with correct parameters" );
295295

296296
delete jQuery.Tween.propHooks.testHooked;

0 commit comments

Comments
 (0)