dcsctp: Fixed minor typo

Bug: None
Change-Id: Icf7e9b4b004e69ecf89b9788345c72c9230dcd6f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/234586
Reviewed-by: Florent Castelli <orphis@webrtc.org>
Commit-Queue: Victor Boivie <boivie@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#35193}
This commit is contained in:
Victor Boivie
2021-10-08 16:33:06 +02:00
committed by WebRTC LUCI CQ
parent befdb843cb
commit ab9ed5c305

View File

@ -273,7 +273,7 @@ size_t TraditionalReassemblyStreams::HandleForwardTsn(
UnwrappedTSN new_cumulative_ack_tsn,
rtc::ArrayView<const AnyForwardTsnChunk::SkippedStream> skipped_streams) {
size_t bytes_removed = 0;
// The `skipped_streams` only over ordered messages - need to
// The `skipped_streams` only cover ordered messages - need to
// iterate all unordered streams manually to remove those chunks.
for (auto& entry : unordered_streams_) {
bytes_removed += entry.second.EraseTo(new_cumulative_ack_tsn);