diff options
author | dev-313 <shekhawat.dev313@gmail.com> | 2019-10-30 18:55:59 +0530 |
---|---|---|
committer | Gireesh Punathil <gpunathi@in.ibm.com> | 2019-11-03 18:52:20 +0530 |
commit | 8b53d0be316045a0bf58458abbe516e278feadab (patch) | |
tree | 47ea47563750a9ceb174e6f4d383ccd4882f5a6a /doc | |
parent | 3a076bae9c256a830353cf47170599d30baa6c1b (diff) | |
download | node-new-8b53d0be316045a0bf58458abbe516e278feadab.tar.gz |
doc: explain http2 aborted event callback
Line added in the description of http2 aborted event
that it's listener does not expect any arguments.
Refs: https://github.com/nodejs/help/issues/877
PR-URL: https://github.com/nodejs/node/pull/30179
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/http2.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/http2.md b/doc/api/http2.md index 07ca77e30f..53461ac58d 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -938,6 +938,7 @@ added: v8.4.0 The `'aborted'` event is emitted whenever a `Http2Stream` instance is abnormally aborted in mid-communication. +Its listener does not expect any arguments. The `'aborted'` event will only be emitted if the `Http2Stream` writable side has not been ended. |