Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
sorribas committed Mar 18, 2014
1 parent c115e63 commit d1436ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Cursor.prototype.destroy = function() {
Cursor.prototype.map = function(mapfn, callback) {
this.toArray(function(err, arr) {
if (err) return callback(err);
callback(null, arr.map(mapfn))
callback(null, arr.map(mapfn));
});
};

Expand Down

0 comments on commit d1436ff

Please sign in to comment.