1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-07-29 03:41:11 +03:00

Back out "Fix typos discovered by codespell"

Summary:
Original commit changeset: 337824bc37bc

Original Phabricator Diff: D47722462

Reviewed By: jbeshay, terrelln, lnicco

Differential Revision: D47801753

fbshipit-source-id: 795ffcccbc2223608e2a707ec2e5bcc7dd974eb3
This commit is contained in:
Konstantin Tsoy
2023-07-26 12:49:13 -07:00
committed by Facebook GitHub Bot
parent 99be4f6788
commit 73edee8252
63 changed files with 95 additions and 97 deletions

View File

@ -580,7 +580,7 @@ folly::Optional<PacketNum> AckScheduler::writeNextAcks(
auto ackingTime = Clock::now();
DCHECK(ackState_.largestRecvdPacketTime.hasValue())
<< "Missing received time for the largest acked packet";
// assuming that we're going to ack the largest received with highest pri
// assuming that we're going to ack the largest received with hightest pri
auto receivedTime = *ackState_.largestRecvdPacketTime;
std::chrono::microseconds ackDelay =
(ackingTime > receivedTime
@ -771,7 +771,7 @@ void BlockedScheduler::writeBlockedFrames(PacketBuilderInterface& builder) {
auto result = writeFrame(blockedFrame, builder);
if (!result) {
// If there is not enough room to write data blocked frame in the
// current packet, we won't be able to write stream blocked frames either
// curretn packet, we won't be able to write stream blocked frames either
// so just return.
return;
}