doc: fix misleading sentence in http.md

Calling `response.end(data)` is not 100% equivalent to calling
`response.write(data)` followed by `response.end()`.

PR-URL: https://github.com/nodejs/node/pull/26465
Fixes: https://github.com/nodejs/node/issues/26005
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
This commit is contained in:
Luigi Pinca 2019-03-06 10:26:33 +01:00 committed by Ruben Bridgewater
parent a2bed79726
commit 1706a2d7d8
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -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