From f462320f747bb3fa37b10f3e846eda217aafa93d Mon Sep 17 00:00:00 2001 From: Jeff Harris Date: Fri, 22 Jan 2016 14:45:12 -0800 Subject: [PATCH] doc: undo move http.IncomingMessage.statusMessage The description for `statusMessage` was accidentally moved under the heading for `http.IncomingMessage.socket`. This commit puts it back in the correct place. PR-URL: https://github.com/nodejs/node/pull/4822 Fixes: https://github.com/nodejs/node/issues/4558 Reviewed-By: James M Snell Reviewed-By: Roman Klauke Reviewed-By: Roman Reiss --- doc/api/http.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/http.markdown b/doc/api/http.markdown index b9e245960b9a5f..4b2a4fe273b686 100644 --- a/doc/api/http.markdown +++ b/doc/api/http.markdown @@ -929,6 +929,8 @@ The 3-digit HTTP response status code. E.G. `404`. **Only valid for response obtained from [`http.ClientRequest`][].** +The HTTP response status message (reason phrase). E.G. `OK` or `Internal Server Error`. + ### message.socket The [`net.Socket`][] object associated with the connection. @@ -936,8 +938,6 @@ The [`net.Socket`][] object associated with the connection. With HTTPS support, use [`request.socket.getPeerCertificate()`][] to obtain the client's authentication details. -The HTTP response status message (reason phrase). E.G. `OK` or `Internal Server Error`. - ### message.trailers The request/response trailers object. Only populated at the `'end'` event.