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}
diff --git a/net/dcsctp/rx/traditional_reassembly_streams.cc b/net/dcsctp/rx/traditional_reassembly_streams.cc
index c9af293..d004824 100644
--- a/net/dcsctp/rx/traditional_reassembly_streams.cc
+++ b/net/dcsctp/rx/traditional_reassembly_streams.cc
@@ -273,7 +273,7 @@
     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);