diff options
author | Juan José Arboleda <soyjuanarbol@gmail.com> | 2022-02-28 23:56:54 -0500 |
---|---|---|
committer | Juan José Arboleda <soyjuanarbol@gmail.com> | 2022-03-02 14:30:37 -0500 |
commit | 7724e78e472b4462b75c6172d3fea7eed3a9b8c1 (patch) | |
tree | ee33620794c4198afc679d0eef07b2406fc4e61c | |
parent | d50efc691c7e4194a8839159d9d951129b932b71 (diff) | |
download | node-new-7724e78e472b4462b75c6172d3fea7eed3a9b8c1.tar.gz |
doc: add missing single-quotes to `http.OutgoingMessage`
PR-URL: https://github.com/nodejs/node/pull/42162
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
-rw-r--r-- | doc/api/http.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/http.md b/doc/api/http.md index 09a51b42db..533a801943 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2420,7 +2420,7 @@ This class serves as the parent class of [`http.ClientRequest`][] and [`http.ServerResponse`][]. It is an abstract of outgoing message from the perspective of the participants of HTTP transaction. -### Event: `drain` +### Event: `'drain'` <!-- YAML added: v0.3.6 @@ -2428,7 +2428,7 @@ added: v0.3.6 Emitted when the buffer of the message is free again. -### Event: `finish` +### Event: `'finish'` <!-- YAML added: v0.1.17 @@ -2436,7 +2436,7 @@ added: v0.1.17 Emitted when the transmission is finished successfully. -### Event: `prefinish` +### Event: `'prefinish'` <!-- YAML added: v0.11.6 |