Use backticks not vertical bars to denote variables in comments for /modules/include

Bug: webrtc:12338
Change-Id: I66ef388e0582fc7b0250d8f2605288f0d652b66a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227095
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34612}
This commit is contained in:
Artem Titov 2021-07-28 20:27:30 +02:00 committed by WebRTC LUCI CQ
parent 880fa8169b
commit 8e70299dd9
3 changed files with 4 additions and 4 deletions

View file

@ -35,7 +35,7 @@ class Module {
virtual void Process() = 0; virtual void Process() = 0;
// This method is called when the module is attached to a *running* process // This method is called when the module is attached to a *running* process
// thread or detached from one. In the case of detaching, |process_thread| // thread or detached from one. In the case of detaching, `process_thread`
// will be nullptr. // will be nullptr.
// //
// This method will be called in the following cases: // This method will be called in the following cases:

View file

@ -30,7 +30,7 @@ class CallStatsObserver {
// Interface used by NackModule and JitterBuffer. // Interface used by NackModule and JitterBuffer.
class NackSender { class NackSender {
public: public:
// If |buffering_allowed|, other feedback messages (e.g. key frame requests) // If `buffering_allowed`, other feedback messages (e.g. key frame requests)
// may be added to the same outgoing feedback message. In that case, it's up // may be added to the same outgoing feedback message. In that case, it's up
// to the user of the interface to ensure that when all buffer-able messages // to the user of the interface to ensure that when all buffer-able messages
// have been added, the feedback message is triggered. // have been added, the feedback message is triggered.

View file

@ -13,8 +13,8 @@
namespace webrtc { namespace webrtc {
// Types for the FEC packet masks. The type |kFecMaskRandom| is based on a // Types for the FEC packet masks. The type `kFecMaskRandom` is based on a
// random loss model. The type |kFecMaskBursty| is based on a bursty/consecutive // random loss model. The type `kFecMaskBursty` is based on a bursty/consecutive
// loss model. The packet masks are defined in // loss model. The packet masks are defined in
// modules/rtp_rtcp/fec_private_tables_random(bursty).h // modules/rtp_rtcp/fec_private_tables_random(bursty).h
enum FecMaskType { enum FecMaskType {