doc: fix sorting nit in sections of http.md

PR-URL: https://github.com/nodejs/node/pull/28943
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Vse Mozhet Byt 2019-08-02 19:39:49 +03:00 committed by Rich Trott
parent 2b03e1d0a5
commit 747ddd5fac

View File

@ -1436,6 +1436,16 @@ response.statusMessage = 'Not found';
After response header was sent to the client, this property indicates the After response header was sent to the client, this property indicates the
status message which was sent out. status message which was sent out.
### response.writableFinished
<!-- YAML
added: v12.7.0
-->
* {boolean}
Is `true` if all data has been flushed to the underlying system, immediately
before the [`'finish'`][] event is emitted.
### response.write(chunk[, encoding][, callback]) ### response.write(chunk[, encoding][, callback])
<!-- YAML <!-- YAML
added: v0.1.29 added: v0.1.29
@ -1473,17 +1483,6 @@ Returns `true` if the entire data was flushed successfully to the kernel
buffer. Returns `false` if all or part of the data was queued in user memory. buffer. Returns `false` if all or part of the data was queued in user memory.
`'drain'` will be emitted when the buffer is free again. `'drain'` will be emitted when the buffer is free again.
### response.writableFinished
<!-- YAML
added: v12.7.0
-->
* {boolean}
Is `true` if all data has been flushed to the underlying system, immediately
before the [`'finish'`][] event is emitted.
### response.writeContinue() ### response.writeContinue()
<!-- YAML <!-- YAML
added: v0.3.0 added: v0.3.0