Skip to content

Commit

Permalink
Missing colon
Browse files Browse the repository at this point in the history
  • Loading branch information
martinthomson committed Dec 11, 2018
1 parent 3f8aad9 commit 120a51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draft-ietf-quic-qpack.md
Expand Up @@ -841,7 +841,7 @@ The decoder reconstructs the Insert Count using the following algorithm:
if CurrentWrapped >= InsertCount + MaxEntries:
# Insert Count wrapped around 1 extra time
InsertCount += 2 * MaxEntries
else if CurrentWrapped + MaxEntries < InsertCount
else if CurrentWrapped + MaxEntries < InsertCount:
# Decoder wrapped around 1 extra time
CurrentWrapped += 2 * MaxEntries

Expand Down

0 comments on commit 120a51b

Please sign in to comment.