Skip to content

Commit

Permalink
doc: fix misleading sentence in http.md
Browse files Browse the repository at this point in the history
Calling `response.end(data)` is not 100% equivalent to calling
`response.write(data)` followed by `response.end()`.

Fixes: nodejs#26005
  • Loading branch information
lpinca committed Mar 7, 2019
1 parent 0fa1165 commit f80563f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ This method signals to the server that all of the response headers and body
have been sent; that server should consider this message complete.
The method, `response.end()`, MUST be called on each response.

If `data` is specified, it is equivalent to calling
If `data` is specified, it is similar in effect to calling
[`response.write(data, encoding)`][] followed by `response.end(callback)`.

If `callback` is specified, it will be called when the response stream
Expand Down

0 comments on commit f80563f

Please sign in to comment.