Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit c4450a8

Browse files
author
Jules Randolph
committed
Fix typo (duplicate "the" articles)
1 parent f5b6e86 commit c4450a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/gettingstarted/callbacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bridging to Callbacks #
22

3-
Besides events, other asynchronous data sources exist in the the web and server-side world. One of them is the the simple callback pattern which is frequently used in Node.js. In this design pattern, the arguments are passed to the function, and then a callback is usually the last parameter, which when executed, passes control to the inner scope with the data. Node.js has a standard way of doing callbacks in which the the callback is called with the `Error` object first if there is an error, else null, and then the additional parameters from the callback.
3+
Besides events, other asynchronous data sources exist in the web and server-side world. One of them is the simple callback pattern which is frequently used in Node.js. In this design pattern, the arguments are passed to the function, and then a callback is usually the last parameter, which when executed, passes control to the inner scope with the data. Node.js has a standard way of doing callbacks in which the callback is called with the `Error` object first if there is an error, else null, and then the additional parameters from the callback.
44

55
## Converting Callbacks to Observable Sequences ##
66

0 commit comments

Comments
 (0)