Fixes two typos

This commit is contained in:
Rick Waldron 2012-06-06 22:59:44 -04:00
parent b9b87d53c6
commit d487b06d93
2 changed files with 2 additions and 2 deletions

View File

@ -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` #### #### `grunt` ####

View File

@ -430,7 +430,7 @@ testIframe( "dimensions/documentSmall", "window vs. small document", function( j
testIframe( "dimensions/documentLarge", "window vs. large document", function( jQuery, window, document ) { testIframe( "dimensions/documentLarge", "window vs. large document", function( jQuery, window, document ) {
expect(2); expect(2);
if ( jQuery.fn.height && jQuery.fn. width ) { if ( jQuery.fn.height && jQuery.fn.width ) {
expect(2); expect(2);
ok( jQuery( document ).height() > jQuery( window ).height(), "document height is larger than window height" ); 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" ); ok( jQuery( document ).width() > jQuery( window ).width(), "document width is larger than window width" );