@@ -288,7 +288,7 @@ session.on('timeout', () => { /* .. */ });
288288added: v9.4.0
289289-->
290290
291- * Value: {string|undefined}
291+ * {string|undefined}
292292
293293Value will be ` undefined ` if the ` Http2Session ` is not yet connected to a
294294socket, ` h2c ` if the ` Http2Session ` is not connected to a ` TLSSocket ` , or
@@ -315,7 +315,7 @@ If specified, the `callback` function is registered as a handler for the
315315added: v9.4.0
316316-->
317317
318- * Value: {boolean}
318+ * {boolean}
319319
320320Will be ` true ` if this ` Http2Session ` instance has been closed, otherwise
321321` false ` .
@@ -346,7 +346,7 @@ If there are any remaining open `Http2Streams` associated with the
346346added: v8.4.0
347347-->
348348
349- * Value: {boolean}
349+ * {boolean}
350350
351351Will be ` true ` if this ` Http2Session ` instance has been destroyed and must no
352352longer be used, otherwise ` false ` .
@@ -356,7 +356,7 @@ longer be used, otherwise `false`.
356356added: v9.4.0
357357-->
358358
359- * Value: {boolean|undefined}
359+ * {boolean|undefined}
360360
361361Value is ` undefined ` if the ` Http2Session ` session socket has not yet been
362362connected, ` true ` if the ` Http2Session ` is connected with a ` TLSSocket ` ,
@@ -381,7 +381,7 @@ Transmits a `GOAWAY` frame to the connected peer *without* shutting down the
381381added: v8.4.0
382382-->
383383
384- * Value: {HTTP/2 Settings Object}
384+ * {HTTP/2 Settings Object}
385385
386386A prototype-less object describing the current local settings of this
387387` Http2Session ` . The local settings are local to * this* ` Http2Session ` instance.
@@ -391,7 +391,7 @@ A prototype-less object describing the current local settings of this
391391added: v9.4.0
392392-->
393393
394- * Value: {string[ ] |undefined}
394+ * {string[ ] |undefined}
395395
396396If the ` Http2Session ` is connected to a ` TLSSocket ` , the ` originSet ` property
397397will return an Array of origins for which the ` Http2Session ` may be
@@ -402,7 +402,7 @@ considered authoritative.
402402added: v8.4.0
403403-->
404404
405- * Value: {boolean}
405+ * {boolean}
406406
407407Indicates whether or not the ` Http2Session ` is currently waiting for an
408408acknowledgment for a sent SETTINGS frame. Will be ` true ` after calling the
@@ -460,7 +460,7 @@ instance's underlying [`net.Socket`].
460460added: v8.4.0
461461-->
462462
463- * Value: {HTTP/2 Settings Object}
463+ * {HTTP/2 Settings Object}
464464
465465A prototype-less object describing the current remote settings of this
466466` Http2Session ` . The remote settings are set by the * connected* HTTP/2 peer.
@@ -482,7 +482,7 @@ registered as a listener on the `'timeout'` event.
482482added: v8.4.0
483483-->
484484
485- * Value: {net.Socket|tls.TLSSocket}
485+ * {net.Socket|tls.TLSSocket}
486486
487487Returns a Proxy object that acts as a ` net.Socket ` (or ` tls.TLSSocket ` ) but
488488limits available methods to ones safe to use with HTTP/2.
@@ -503,7 +503,7 @@ added: v8.4.0
503503Provides miscellaneous information about the current state of the
504504` Http2Session ` .
505505
506- * Value: {Object}
506+ * {Object}
507507 * ` effectiveLocalWindowSize ` {number} The current local (receive)
508508 flow control window size for the ` Http2Session ` .
509509 * ` effectiveRecvDataLength ` {number} The current number of bytes
@@ -548,7 +548,7 @@ multiple SETTINGS frames while acknowledgment is still pending.
548548added: v8.4.0
549549-->
550550
551- * Value: {number}
551+ * {number}
552552
553553The ` http2session.type ` will be equal to
554554` http2.constants.NGHTTP2_SESSION_SERVER ` if this ` Http2Session ` instance is a
@@ -868,7 +868,7 @@ stream.on('trailers', (headers, flags) => {
868868added: v8.4.0
869869-->
870870
871- * Value: {boolean}
871+ * {boolean}
872872
873873Set to ` true ` if the ` Http2Stream ` instance was aborted abnormally. When set,
874874the ` 'aborted' ` event will have been emitted.
@@ -878,8 +878,8 @@ the `'aborted'` event will have been emitted.
878878added: v8.4.0
879879-->
880880
881- * code {number} Unsigned 32-bit integer identifying the error code. ** Default: **
882- ` http2.constants.NGHTTP2_NO_ERROR ` (` 0x00 ` ).
881+ * ` code ` {number} Unsigned 32-bit integer identifying the error code.
882+ ** Default: ** ` http2.constants.NGHTTP2_NO_ERROR ` (` 0x00 ` ).
883883* ` callback ` {Function} An optional function registered to listen for the
884884 ` 'close' ` event.
885885
@@ -891,7 +891,7 @@ connected HTTP/2 peer.
891891added: v9.4.0
892892-->
893893
894- * Value: {boolean}
894+ * {boolean}
895895
896896Set to ` true ` if the ` Http2Stream ` instance has been closed.
897897
@@ -900,7 +900,7 @@ Set to `true` if the `Http2Stream` instance has been closed.
900900added: v8.4.0
901901-->
902902
903- * Value: {boolean}
903+ * {boolean}
904904
905905Set to ` true ` if the ` Http2Stream ` instance has been destroyed and is no longer
906906usable.
@@ -910,7 +910,7 @@ usable.
910910added: v9.4.0
911911-->
912912
913- * Value: {boolean}
913+ * {boolean}
914914
915915Set to ` true ` if the ` Http2Stream ` instance has not yet been assigned a
916916numeric stream identifier.
@@ -940,7 +940,7 @@ Updates the priority for this `Http2Stream` instance.
940940added: v8.4.0
941941-->
942942
943- * Value: {number}
943+ * {number}
944944
945945Set to the ` RST_STREAM ` [ error code] [ ] reported when the ` Http2Stream ` is
946946destroyed after either receiving an ` RST_STREAM ` frame from the connected peer,
@@ -952,7 +952,7 @@ calling `http2stream.close()`, or `http2stream.destroy()`. Will be
952952added: v9.5.0
953953-->
954954
955- * Value: {HTTP/2 Headers Object}
955+ * {HTTP/2 Headers Object}
956956
957957An object containing the outbound headers sent for this ` Http2Stream ` .
958958
@@ -961,7 +961,7 @@ An object containing the outbound headers sent for this `Http2Stream`.
961961added: v9.5.0
962962-->
963963
964- * Value: {HTTP/2 Headers Object[ ] }
964+ * {HTTP/2 Headers Object[ ] }
965965
966966An array of objects containing the outbound informational (additional) headers
967967sent for this ` Http2Stream ` .
@@ -971,7 +971,7 @@ sent for this `Http2Stream`.
971971added: v9.5.0
972972-->
973973
974- * Value: {HTTP/2 Headers Object}
974+ * {HTTP/2 Headers Object}
975975
976976An object containing the outbound trailers sent for this this ` HttpStream ` .
977977
@@ -980,7 +980,7 @@ An object containing the outbound trailers sent for this this `HttpStream`.
980980added: v8.4.0
981981-->
982982
983- * Value: {Http2Session}
983+ * {Http2Session}
984984
985985A reference to the ` Http2Session ` instance that owns this ` Http2Stream ` . The
986986value will be ` undefined ` after the ` Http2Stream ` instance is destroyed.
@@ -1010,7 +1010,7 @@ added: v8.4.0
10101010Provides miscellaneous information about the current state of the
10111011` Http2Stream ` .
10121012
1013- * Value: {Object}
1013+ * {Object}
10141014 * ` localWindowSize ` {number} The number of bytes the connected peer may send
10151015 for this ` Http2Stream ` without receiving a ` WINDOW_UPDATE ` .
10161016 * ` state ` {number} A flag indicating the low-level current state of the
@@ -1122,7 +1122,7 @@ Sends an additional informational `HEADERS` frame to the connected HTTP/2 peer.
11221122added: v8.4.0
11231123-->
11241124
1125- * Value: {boolean}
1125+ * {boolean}
11261126
11271127Boolean (read-only). True if headers were sent, false otherwise.
11281128
@@ -1131,7 +1131,7 @@ Boolean (read-only). True if headers were sent, false otherwise.
11311131added: v8.4.0
11321132-->
11331133
1134- * Value: {boolean}
1134+ * {boolean}
11351135
11361136Read-only property mapped to the ` SETTINGS_ENABLE_PUSH ` flag of the remote
11371137client's most recent ` SETTINGS ` frame. Will be ` true ` if the remote peer
0 commit comments