Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Commit

Permalink
Fix linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenVerborgh committed Nov 7, 2016
1 parent 7ecff39 commit efe3096
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/util/RdfUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,9 @@ util.addBinding = function (bindings, left, right) {
bindings[left] = right;
// The right-hand side should be consistent with the binding
else if (right !== bindings[left]) {
throw new Error(['Cannot bind', left, 'to', right,
'because it was already bound to', bindings[left] + '.'].join(' '));
throw new Error([
'Cannot bind', left, 'to', right,
'because it was already bound to', bindings[left] + '.'].join(' '));
}
}
// Both are constants, so they should be equal for a successful binding
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint": "^3.9.1",
"jsdoc": "^3.4.2",
"mocha": "^3.1.2",
"pre-commit": "^1.1.3",
Expand Down

0 comments on commit efe3096

Please sign in to comment.