Skip to content

Commit

Permalink
Don't use "we" in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kahnvex committed Apr 25, 2015
1 parent 061b3c0 commit 8683b09
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 @@ -157,11 +157,11 @@ var nextTick =(function () {

if (typeof process === "object" &&
process.toString() === '[object process]' && process.nextTick) {
// Ensure we are in a real Node environment, with a `process.nextTick`.
// Ensure Q is in a real Node environment, with a `process.nextTick`.
// To see through fake Node environments:
// * Mocha test runner - exposes a `process` global without a `nextTick`
// * Browserify - exposes a `process.nexTick` function that uses
// `setTimeout`. In this case we'd rather use `setImmediate` because
// `setTimeout`. In this case `setImmediate` is preferred because
// it is faster. Browserify's `process.toString()` yields
// '[object Object]', while in a real Node environment
// `process.nextTick()` yields '[object process]'.
Expand Down

0 comments on commit 8683b09

Please sign in to comment.