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

@ -32,7 +32,7 @@ JNIEnv* GetEnv(JavaVM* jvm) {
return reinterpret_cast<JNIEnv*>(env);
}
// Return a |jlong| that will correctly convert back to |ptr|. This is needed
// Return a `jlong` that will correctly convert back to `ptr`. This is needed
// because the alternative (of silently passing a 32-bit pointer to a vararg
// function expecting a 64-bit param) picks up garbage in the high 32 bits.
jlong PointerTojlong(void* ptr) {