-
-
Notifications
You must be signed in to change notification settings - Fork 32.9k
Closed
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.
Description
Affected URL(s)
https://nodejs.org/api/http2.html
Description of the problem
The output here (and other places in the documentation) is buggy; it
says
maxReservedRemoteStreams
... The maximum allowed value is$22^{32}-1$ . ...
The actual source documentation is correct:
Line 2728 in dabda03
is 0. The maximum allowed value is 2<sup>32</sup>-1. A negative value sets |
This began in #36407 according to git bisect run
with the following:
#!/bin/bash
rm -rf out/doc
NODE=out/Release/node make -j$(nproc) doc-only || exit 125
! grep -q '22<sup>32</sup>-1' out/doc/api/http2.html
Weirdly the issue appears localized to superscripts in lists. It looks
fine when they are not in lists.
Metadata
Metadata
Assignees
Labels
docIssues and PRs related to the documentations.Issues and PRs related to the documentations.