Skip to content

Commit d73d94a

Browse files
committed
Clarify a paragraph in Chapter 11
Issue marijnh#392
1 parent 4155507 commit d73d94a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

11_async.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ holds their name.
254254

255255
{{index "asynchronous programming"}}
256256

257-
The third argument given to the handler, `done`, is a callback
257+
The fourth argument given to the handler, `done`, is a callback
258258
function that it must call when it is done with the request. If we had
259-
used the function's ((return value)) as the response value, that would
259+
used the handler's ((return value)) as the response value, that would
260260
mean that a request handler can't itself perform asynchronous actions.
261261
A function doing asynchronous work typically returns before the work
262262
is done, having arranged for a callback to be called when it

0 commit comments

Comments
 (0)