From bc88b54d91aa637e19bb5dec16af869ae0e09931 Mon Sep 17 00:00:00 2001 From: Artem Titov Date: Wed, 28 Jul 2021 20:23:40 +0200 Subject: [PATCH] Use backticks not vertical bars to denote variables in comments for /modules/async_audio_processing Bug: webrtc:12338 Change-Id: I6500650a1bb327f7a6b3b1dcffd2b861377da647 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227092 Reviewed-by: Harald Alvestrand Commit-Queue: Artem Titov Cr-Commit-Position: refs/heads/master@{#34625} --- .../async_audio_processing/async_audio_processing.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/async_audio_processing/async_audio_processing.h b/modules/async_audio_processing/async_audio_processing.h index 7e09d69f15..bbd0f69b1b 100644 --- a/modules/async_audio_processing/async_audio_processing.h +++ b/modules/async_audio_processing/async_audio_processing.h @@ -53,16 +53,16 @@ class AsyncAudioProcessing final { ~AsyncAudioProcessing(); // Creates AsyncAudioProcessing which will pass audio frames to - // |frame_processor| on |task_queue_| and reply with processed frames passed - // into |on_frame_processed_callback|, which is posted back onto - // |task_queue_|. |task_queue_| is created using the provided - // |task_queue_factory|. + // `frame_processor` on `task_queue_` and reply with processed frames passed + // into `on_frame_processed_callback`, which is posted back onto + // `task_queue_`. `task_queue_` is created using the provided + // `task_queue_factory`. AsyncAudioProcessing( AudioFrameProcessor& frame_processor, TaskQueueFactory& task_queue_factory, AudioFrameProcessor::OnAudioFrameCallback on_frame_processed_callback); - // Accepts |frame| for asynchronous processing. Thread-safe. + // Accepts `frame` for asynchronous processing. Thread-safe. void Process(std::unique_ptr frame); private: