fix typos in comments

BUG=none

Change-Id: I3e500213a7a272b6422db35575389b368c0e3ef2
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176131
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Per Åhgren <peah@webrtc.org>
Commit-Queue: Philipp Hancke <philipp.hancke@googlemail.com>
Cr-Commit-Position: refs/heads/master@{#31380}
This commit is contained in:
Philipp Hancke 2020-05-26 19:12:31 +02:00 committed by Commit Bot
parent b81e6678a9
commit 1a4975642b
2 changed files with 2 additions and 2 deletions

View File

@ -646,7 +646,7 @@ bool AudioSendStream::SetupSendCodec(const Config& new_config) {
}
}
// Wrap the encoder in a an AudioEncoderCNG, if VAD is enabled.
// Wrap the encoder in an AudioEncoderCNG, if VAD is enabled.
if (spec.cng_payload_type) {
AudioEncoderCngConfig cng_config;
cng_config.num_channels = encoder->NumChannels();

View File

@ -84,7 +84,7 @@ class SctpSidAllocator {
std::set<int> used_sids_;
};
// DataChannel is a an implementation of the DataChannelInterface based on
// DataChannel is an implementation of the DataChannelInterface based on
// libjingle's data engine. It provides an implementation of unreliable or
// reliabledata channels. Currently this class is specifically designed to use
// both RtpDataChannel and SctpTransport.