Skip to content

Commit

Permalink
jslint: Fix missing space between function and (
Browse files Browse the repository at this point in the history
  • Loading branch information
magnars committed Oct 18, 2011
1 parent 99b870a commit 0a0e323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jshint-linter.js
@@ -1,5 +1,5 @@
module.exports = require('./jslint-linter');
module.exports.create = function(options) {
module.exports.create = function (options) {
if (!options) { throw new TypeError('options is required (at least an empty object)'); }
return Object.create(this, {
options: { value: options },
Expand Down

2 comments on commit 0a0e323

@pahen
Copy link
Contributor

@pahen pahen commented on 0a0e323 Oct 18, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hehe, sorry about that one. Kind of ironic :p

@magnars
Copy link
Owner Author

@magnars magnars commented on 0a0e323 Oct 18, 2011 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.