Build: Fix various typos

Thanks @jamesgpearce, @imyousuf
Ref dc4b914a05
This commit is contained in:
Oleg Gaidarenko
2014-11-08 17:41:28 +03:00
committed by Michał Gołębiowski
parent b7663eabcd
commit 3f9fda8fab
2 changed files with 2 additions and 2 deletions

View File

@@ -181,7 +181,7 @@ module.exports = function( grunt ) {
// Check removeWith list
excludeList( removeWith[ module ] );
} else {
grunt.log.error( "Module \"" + module + "\" is a mimimum requirement.");
grunt.log.error( "Module \"" + module + "\" is a minimum requirement.");
}
} else {
grunt.log.writeln( flag );

View File

@@ -88,7 +88,7 @@ test("jQuery.data({})", 25, function() {
test("jQuery.data(window)", 25, function() {
// remove bound handlers from window object to stop potential false positives caused by fix for #5280 in
// transports/xhr.js
jQuery( window ).off( "unload" );
jQuery( window ).off( "unload" );
dataTests( window );
});