From 1a4975642bf962ae059674b1b89cde4d785aba5b Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Tue, 26 May 2020 19:12:31 +0200 Subject: [PATCH] fix typos in comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BUG=none Change-Id: I3e500213a7a272b6422db35575389b368c0e3ef2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176131 Reviewed-by: Harald Alvestrand Reviewed-by: Per Ã…hgren Commit-Queue: Philipp Hancke Cr-Commit-Position: refs/heads/master@{#31380} --- audio/audio_send_stream.cc | 2 +- pc/data_channel.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.