diff --git a/build/tasks/build.js b/build/tasks/build.js index 4b807e63d..caec8f153 100644 --- a/build/tasks/build.js +++ b/build/tasks/build.js @@ -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 ); diff --git a/test/unit/data.js b/test/unit/data.js index 14acd427e..ff2653f4b 100644 --- a/test/unit/data.js +++ b/test/unit/data.js @@ -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 ); });