aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--test/unit/dimensions.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0d84e1072..51d40f988 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Make sure you have `grunt` installed by testing:
-Then, to get a complete, minified (w/ Ugligy.js), linted (w/ JSHint) version of jQuery, type the following:
+Then, to get a complete, minified (w/ Uglify.js), linted (w/ JSHint) version of jQuery, type the following:
#### `grunt` ####
diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js
index 4a9dd0b42..377b6f83a 100644
--- a/test/unit/dimensions.js
+++ b/test/unit/dimensions.js
@@ -430,7 +430,7 @@ testIframe( "dimensions/documentSmall", "window vs. small document", function( j
testIframe( "dimensions/documentLarge", "window vs. large document", function( jQuery, window, document ) {
expect(2);
- if ( jQuery.fn.height && jQuery.fn. width ) {
+ if ( jQuery.fn.height && jQuery.fn.width ) {
expect(2);
ok( jQuery( document ).height() > jQuery( window ).height(), "document height is larger than window height" );
ok( jQuery( document ).width() > jQuery( window ).width(), "document width is larger than window width" );