Skip to content

Commit

Permalink
Fix formatting for HTTP examples.
Browse files Browse the repository at this point in the history
- Fix figure line length (set to 69 to match output limits).
- Note use of obs-fold is just for presentation.

Fixes #436 and #436.
  • Loading branch information
dvorak42 committed Sep 5, 2023
1 parent 985cbfc commit 087cbc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
parser = argparse.ArgumentParser(description="Lint markdown drafts.")
parser.add_argument("files", metavar="file", nargs="+", help="Files to lint")
parser.add_argument("-l", dest="maxLineLength", default=80)
parser.add_argument("-f", dest="maxFigureLineLength", default=65)
parser.add_argument("-f", dest="maxFigureLineLength", default=69)

args = parser.parse_args()

Expand Down
4 changes: 3 additions & 1 deletion draft-ietf-privacypass-auth-scheme.md
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,9 @@ the token-key parameter for the first challenge in the list, whereas
token-key-1 denotes the token-key for the second challenge in the list.

The resulting wire-encoded WWW-Authentication header based on this
list of challenges is then listed at the end.
list of challenges is then listed at the end. Line folding is only
used to fit the document formatting constraints and not unsupported
in actual requests.

~~~
token-type-0: 0x0002
Expand Down

0 comments on commit 087cbc6

Please sign in to comment.