diff --git a/draft-ietf-quic-recovery.md b/draft-ietf-quic-recovery.md index 03e6a83a5f..f7fc23799a 100644 --- a/draft-ietf-quic-recovery.md +++ b/draft-ietf-quic-recovery.md @@ -533,7 +533,7 @@ Pseudocode for DetectLostPackets follows: else if (packet_delta > reordering_threshold) lost_packets.insert(unacked) else if (loss_time == 0 && delay_until_lost != infinite): - loss_time = delay_until_lost - time_since_sent + loss_time = now() + delay_until_lost - time_since_sent // Inform the congestion controller of lost packets and // lets it decide whether to retransmit immediately.