Skip to content

Commit

Permalink
italicize the warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed May 23, 2018
1 parent 874d582 commit 0167c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting-started/async-completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ exports.default = passingCallback;

Synchronous tasks are no longer supported. They often led to subtle mistakes that were hard to debug, like forgetting to return your streams from a task.

When you see the warning "Did you forget to signal async completion?" then none of the techniques mentioned above were used. You’ll need to use the error-first callback or return a stream, promise, event emitter, child process, or observable to resolve the issue.
When you see the warning _"Did you forget to signal async completion?"_ then none of the techniques mentioned above were used. You’ll need to use the error-first callback or return a stream, promise, event emitter, child process, or observable to resolve the issue.

## Using async/await

Expand Down

0 comments on commit 0167c16

Please sign in to comment.