Skip to content

Commit 360a478

Browse files
bperelmgol
authored andcommitted
Docs: Fix various spelling mistakes
Closes gh-2487
1 parent 5fe76c6 commit 360a478

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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-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/event.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2725,7 +2725,7 @@ test( "Donor event interference", function( assert ) {
27252725
jQuery( "#donor-input" )[ 0 ].click();
27262726
} );
27272727

2728-
test( "originalEvent property for Chrome, Safari and FF of simualted event", function( assert ) {
2728+
test( "originalEvent property for Chrome, Safari and FF of simulated event", function( assert ) {
27292729
var userAgent = window.navigator.userAgent;
27302730

27312731
if ( !(/chrome/i.test( userAgent ) ||

test/unit/manipulation.js

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

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

test/unit/tween.js

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

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

295295
delete jQuery.Tween.propHooks.testHooked;

0 commit comments

Comments
 (0)