Fixed typos in comments

This commit is contained in:
Ian Gilman 2013-05-20 09:39:57 -07:00
parent da86ca2e38
commit 674c0a069d
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ $.EventHandler.prototype = {
* @param {Function} handler - Function to call when event is triggered.
*/
raiseEvent: function( eventName, eventArgs ) {
//uncomment if you want to get a log og all events
//uncomment if you want to get a log of all events
//$.console.log( eventName );
var handler = this.getHandler( eventName );

View File

@ -53,7 +53,7 @@ $.Viewport = function( options ) {
//options.config and the general config argument are deprecated
//in favor of the more direct specification of optional settings
//being pass directly on the options object
//being passed directly on the options object
if ( options.config ){
$.extend( true, options, options.config );
delete options.config;