Skip to content

Commit

Permalink
.append() is clear than +=
Browse files Browse the repository at this point in the history
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
  • Loading branch information
martinthomson and marten-seemann committed Aug 19, 2020
1 parent 2c029b3 commit e1fc8a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draft-ietf-quic-recovery.md
Expand Up @@ -1621,7 +1621,7 @@ Invoked when DetectAndRemoveLostPackets deems packets lost.
~~~
InPersistentCongestion(lost_packets):
// Consider lost packets across all packet number spaces.
pc_lost += lost_packets
pc_lost.append(lost_packets)

// Disregard packets sent prior to getting an RTT sample.
assert(first_rtt_sample != 0)
Expand Down

0 comments on commit e1fc8a9

Please sign in to comment.