mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-08-01 01:44:22 +03:00
Fix typos discovered by codespell
Summary: `codespell --ignore-words-list=arithmetics,atleast,crate,crated,deriver,ect,hel,onl,startin,whats --skip="*.lock"` * https://pypi.org/project/codespell X-link: https://github.com/facebookincubator/mvfst/pull/307 Reviewed By: hanidamlaj, lnicco Differential Revision: D47809078 Pulled By: kvtsoy fbshipit-source-id: 566557f2389746db541ff265a5dec8d6404b3701
This commit is contained in:
committed by
Facebook GitHub Bot
parent
64c122f239
commit
b8396fc119
@ -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 hightest pri
|
||||
// assuming that we're going to ack the largest received with highest 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
|
||||
// curretn packet, we won't be able to write stream blocked frames either
|
||||
// current packet, we won't be able to write stream blocked frames either
|
||||
// so just return.
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user