diff --git a/CHANGELOG.md b/CHANGELOG.md index ba6e6ad3..5011425c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,7 +21,7 @@ - update jquery to 3.3.0 - Add possibility to test HTML: all, attribute prefix, attribute contains, attribute ends with, child, and class selectors -- Fix matching mutiple calls for the same selector/function exception +- Fix matching multiple calls for the same selector/function exception ## 4.3.1 diff --git a/vendor/assets/javascripts/jquery.js b/vendor/assets/javascripts/jquery.js index 7fc60fca..9dcb1e76 100644 --- a/vendor/assets/javascripts/jquery.js +++ b/vendor/assets/javascripts/jquery.js @@ -1121,7 +1121,7 @@ setDocument = Sizzle.setDocument = function( node ) { // Support: IE<10 // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programatically-set names, + // The broken getElementById methods don't pick up programmatically-set names, // so use a roundabout getElementsByName test support.getById = assert(function( div ) { docElem.appendChild( div ).id = expando; @@ -4051,7 +4051,7 @@ jQuery.fn.extend( { elem = this[ 0 ], attrs = elem && elem.attributes; - // Special expections of .data basically thwart jQuery.access, + // Special exceptions of .data basically thwart jQuery.access, // so implement the relevant behavior ourselves // Gets all values @@ -7118,7 +7118,7 @@ jQuery.extend( { value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); } - // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, + // Fixes #8908, it can be done more correctly by specifying setters in cssHooks, // but it would mean to define eight // (for every problematic property) identical functions if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { diff --git a/vendor/assets/javascripts/jquery2.js b/vendor/assets/javascripts/jquery2.js index 5c3c456a..d0d9b5fb 100644 --- a/vendor/assets/javascripts/jquery2.js +++ b/vendor/assets/javascripts/jquery2.js @@ -1087,7 +1087,7 @@ setDocument = Sizzle.setDocument = function( node ) { // Support: IE<10 // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programatically-set names, + // The broken getElementById methods don't pick up programmatically-set names, // so use a roundabout getElementsByName test support.getById = assert(function( div ) { docElem.appendChild( div ).id = expando;