Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kahnvex committed Apr 27, 2015
1 parent ebc4f77 commit 9b3e0b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions q.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

// Add a noConflict object so Q can be removed from the
// global namespace.
self.Q.noConflict = function() {
self.Q.noConflict = function () {
self.Q = previousQ;
return this;
};
Expand Down Expand Up @@ -2033,7 +2033,7 @@ Promise.prototype.nodeify = function (nodeback) {
};

Q.noConflict = function() {
throw new Error('Q.noConflict only works when Q is used as a global');
throw new Error("Q.noConflict only works when Q is used as a global");
};

// All code before this point will be filtered from stack traces.
Expand Down

0 comments on commit 9b3e0b2

Please sign in to comment.