Skip to content

Commit

Permalink
Fix comment typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
eventualbuddha committed Nov 17, 2011
1 parent 811bfc0 commit 108b7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/eventemitter2.js
Expand Up @@ -137,7 +137,7 @@
type = typeof type === 'string' ? type.split(this.delimiter) : type.slice();

//
// Looks for too consecutive '**', if so, don't add the event at all.
// Looks for two consecutive '**', if so, don't add the event at all.
//
for(var i = 0, len = type.length; i+1 < len; i++) {
if(type[i] === '**' && type[i+1] === '**') {
Expand Down

0 comments on commit 108b7cc

Please sign in to comment.