diff --git a/audio/audio_send_stream.cc b/audio/audio_send_stream.cc index cdeea1a107..62ca51403e 100644 --- a/audio/audio_send_stream.cc +++ b/audio/audio_send_stream.cc @@ -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(); diff --git a/pc/data_channel.h b/pc/data_channel.h index 7c7d220640..9a0a0aa2d3 100644 --- a/pc/data_channel.h +++ b/pc/data_channel.h @@ -84,7 +84,7 @@ class SctpSidAllocator { std::set 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.