From: Rick Waldron Date: Thu, 7 Jun 2012 02:59:44 +0000 (-0400) Subject: Fixes two typos X-Git-Tag: 1.8b1~72 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d487b06d93a576e66b81a0620207f083712268d1;p=jquery.git Fixes two typos --- 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" );