Skip to content

Update deferreds.md #558

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion page/code-organization/deferreds.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ your application may be blocked from running until a result from it is
returned. Deferreds provide a better solution to this problem, one which
is void of "blocking" effects and completely decoupled.

The [Promise/A](http://wiki.commonjs.org/wiki/Promises/A) proposal
The [Promises/A](http://wiki.commonjs.org/wiki/Promises/A) proposal
defines a method called "then" that can be used to register callbacks to
a promise and, thus, get the future result when it is available. The
pseudo-code for dealing with a third party API that returns a promise
Expand Down