We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417e9d8 commit 1961a63Copy full SHA for 1961a63
locale/en/docs/guides/event-loop-timers-and-nexttick.md
@@ -343,7 +343,7 @@ function someAsyncApiCall(callback) { callback(); }
343
344
// the callback is called before `someAsyncApiCall` completes.
345
someAsyncApiCall(() => {
346
- // since someAsyncApiCall has completed, bar hasn't been assigned any value
+ // since someAsyncApiCall hasn't completed, bar hasn't been assigned any value
347
console.log('bar', bar); // undefined
348
});
349
0 commit comments