Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
neolao committed Aug 21, 2014
1 parent db44dbd commit ffd6471
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/kernel/EventEmitter.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ proto.on = function(name, handler)

// Check the handler
assert.strictEqual(typeof handler, 'function', 'The event handler must be a generator function');
assert.strictEqual(handler.constructr.name, 'GeneratorFunction', 'The event handler must be a generator function');
assert.strictEqual(handler.constructor.name, 'GeneratorFunction', 'The event handler must be a generator function');

var eventListeners = this.getEventListeners(name);
eventListeners.push(handler);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name" : "solfegejs",
"description" : "The Solfege framework",
"homepage" : "http://solfegejs.com",
"version" : "1.3.4",
"version" : "1.3.5",
"author" : "neolao <[email protected]>",
"private" : false,
"repository" : "https://github.com/neolao/solfege.git",
"license" : "MIT",
"main" : "lib/solfege.js",
"engines" :
{
"node": ">= 0.11.9"
"node": ">= 0.11.11"
},
"dependencies" :
{
Expand Down

0 comments on commit ffd6471

Please sign in to comment.