From 747ddd5fac191d018c6e9720f21d3ea66872d667 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Fri, 2 Aug 2019 19:39:49 +0300 Subject: [PATCH] doc: fix sorting nit in sections of http.md PR-URL: https://github.com/nodejs/node/pull/28943 Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig --- doc/api/http.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/doc/api/http.md b/doc/api/http.md index 5deb50ed8fd..62965fcea54 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1436,6 +1436,16 @@ response.statusMessage = 'Not found'; After response header was sent to the client, this property indicates the status message which was sent out. +### response.writableFinished + + +* {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]) - -* {boolean} - -Is `true` if all data has been flushed to the underlying system, immediately -before the [`'finish'`][] event is emitted. - - ### response.writeContinue()