-
Notifications
You must be signed in to change notification settings - Fork 31.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: remove undefined reference variable #16106
Conversation
Remove undefined reference variable 'common' from http2 API
doc/api/http2.md
Outdated
@@ -1899,7 +1899,9 @@ const req = client.request({ | |||
':authority': `localhost:${port}` | |||
}); | |||
|
|||
req.on('response', common.mustCall()); | |||
req.on('response', (headers) => { | |||
console.log(headers[':status']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be great if this is headers[http2.constants.HTTP2_HEADER_STATUS]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, thanks for the review. I just made the necessary changes to the line.
Replaced `headers[':status']` with `headers[http2.constants.HTTP2_HEADER_STATUS]`
Oops, this is a doc change, doesn't need CI. |
Landed in a84e10e, thanks! |
Remove undefined reference variable 'common' from http2 API PR-URL: nodejs/node#16106 Fixes: nodejs/node#16068 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Remove undefined reference variable 'common' from http2 API
Checklist
Affected core subsystem(s)
doc
Fixes: #16068