Skip to content

Commit

Permalink
Spell 'Application' correctly (#2583)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghedo authored and ianswett committed Apr 2, 2019
1 parent 4f4e4d9 commit 30c31cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions draft-ietf-quic-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ follows:
min_rtt = infinite
time_of_last_sent_ack_eliciting_packet = 0
time_of_last_sent_crypto_packet = 0
for pn_space in [ Initial, Handshake, ApplicatonData ]:
for pn_space in [ Initial, Handshake, ApplicationData ]:
largest_acked_packet[pn_space] = 0
loss_time[pn_space] = 0
~~~
Expand Down Expand Up @@ -1070,7 +1070,7 @@ Pseudocode for SetLossDetectionTimer follows:
GetEarliestLossTime():
time = loss_time[Initial]
space = Initial
for pn_space in [ Handshake, ApplicatonData ]:
for pn_space in [ Handshake, ApplicationData ]:
if loss_time[pn_space] != 0 &&
(time == 0 || loss_time[pn_space] < time):
time = loss_time[pn_space];
Expand Down

0 comments on commit 30c31cf

Please sign in to comment.