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

Bug: webrtc:12338
Change-Id: I8900efa25a5eebcf57ec894108e1212e1d5b8089
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227098
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34675}
This commit is contained in:
Artem Titov
2021-07-28 20:33:57 +02:00
committed by WebRTC LUCI CQ
parent ee3e3fdfb6
commit bbdecaff89
4 changed files with 10 additions and 10 deletions

View File

@ -73,11 +73,11 @@ class ProcessThreadImpl : public ProcessThread {
}
int64_t run_at_ms;
// DelayedTask owns the |task|, but some delayed tasks must be removed from
// DelayedTask owns the `task`, but some delayed tasks must be removed from
// the std::priority_queue, but mustn't be deleted. std::priority_queue does
// not give non-const access to the values, so storing unique_ptr would
// delete the task as soon as it is remove from the priority queue.
// Thus lifetime of the |task| is managed manually.
// Thus lifetime of the `task` is managed manually.
QueuedTask* task;
};
typedef std::list<ModuleCallback> ModuleList;