Skip to content

Commit 82b4371

Browse files
authored
[docs][NFC] Resolve mismatched backticks
1 parent dff8788 commit 82b4371

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

clang/docs/AddressSanitizer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Instrumentation code outlining
297297

298298
By default AddressSanitizer inlines the instrumentation code to improve the
299299
run-time performance, which leads to increased binary size. Using the
300-
(clang flag ``-fsanitize-address-outline-instrumentation` default: ``false``)
300+
(clang flag ``-fsanitize-address-outline-instrumentation`` default: ``false``)
301301
flag forces all code instrumentation to be outlined, which reduces the size
302302
of the generated code, but also reduces the run-time performance.
303303

clang/docs/InternalsManual.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ Class:
343343
Description:
344344
This is a formatter which represents the argument number in a human-readable
345345
format: the value ``123`` stays ``123``, ``12345`` becomes ``12.34k``,
346-
``6666666` becomes ``6.67M``, and so on for 'G' and 'T'.
346+
``6666666`` becomes ``6.67M``, and so on for 'G' and 'T'.
347347

348348
**"objcclass" format**
349349

clang/docs/ReleaseNotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Bug Fixes in This Version
273273
``#pragma pop_macro("")``. (#GH149762).
274274
- Fix a crash in variable length array (e.g. ``int a[*]``) function parameter type
275275
being used in ``_Countof`` expression. (#GH152826).
276-
- `-Wunreachable-code`` now diagnoses tautological or contradictory
276+
- ``-Wunreachable-code`` now diagnoses tautological or contradictory
277277
comparisons such as ``x != 0 || x != 1.0`` and ``x == 0 && x == 1.0`` on
278278
targets that treat ``_Float16``/``__fp16`` as native scalar types. Previously
279279
the warning was silently lost because the operands differed only by an implicit

clang/docs/SanitizerSpecialCaseList.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ precedence. Here are a few examples.
128128
type:T
129129
130130
$ cat ignorelist4.txt
131-
# Function `bad_bar`` will be instrumented.
131+
# Function `bad_bar` will be instrumented.
132132
# Function `good_bar` will not be instrumented.
133133
fun:*
134134
fun:*bar

clang/include/clang/ASTMatchers/ASTMatchers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8823,7 +8823,7 @@ AST_MATCHER(OMPDefaultClause, isFirstPrivateKind) {
88238823
/// #pragma omp for
88248824
/// \endcode
88258825
///
8826-
/// `ompExecutableDirective(isAllowedToContainClause(OMPC_default))`` matches
8826+
/// ``ompExecutableDirective(isAllowedToContainClause(OMPC_default))`` matches
88278827
/// ``omp parallel`` and ``omp parallel for``.
88288828
///
88298829
/// If the matcher is use from clang-query, ``OpenMPClauseKind`` parameter

clang/test/CodeGen/AArch64/pure-scalable-args-empty-union.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void f0(S0 *p) {
2323

2424
#ifdef __cplusplus
2525

26-
// PST containing an empty union with `[[no_unique_address]]`` - pass in registers.
26+
// PST containing an empty union with `[[no_unique_address]]` - pass in registers.
2727
typedef struct {
2828
fvec32 x[4];
2929
[[no_unique_address]]

compiler-rt/test/profile/instrprof-thinlto-indirect-call-promotion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static void callee0() {}
8080
void callee1() {}
8181
typedef void (*FPT)();
8282
FPT calleeAddrs[] = {callee0, callee1};
83-
// `global_func`` might call one of two indirect callees. callee0 has internal
83+
// `global_func` might call one of two indirect callees. callee0 has internal
8484
// linkage and callee1 has external linkage.
8585
void global_func() {
8686
FPT fp = calleeAddrs[0];

0 commit comments

Comments
 (0)