Tooltip tests: Fixed typo

This commit is contained in:
Kris Borchers 2012-09-05 20:37:29 -05:00
parent e162fddd95
commit e1fd8ea6b3

View File

@ -40,7 +40,7 @@
$( "#async" ).tooltip({
content: function( response ) {
setTimeout(function() {
response( "I loaded <strong>asyncrhonously</strong>!" );
response( "I loaded <strong>asynchronously</strong>!" );
}, 1000 );
return "Loading...";
}