Skip to content
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