Skip to content

Commit e81832d

Browse files
authored
Add backticks for code analysis names
1 parent 06b4932 commit e81832d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/code-quality/c28112.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A variable that is accessed by using the Interlocked executive support routines,
1616

1717
`InterlockedXxx` functions are intended to provide atomic operations, but are only atomic with respect to other `InterlockedXxx` functions. Although certain ordinary assignments, accesses, and comparisons to variables that are used by the Interlocked\* routines can be safely accessed by using a different function, the risk is great enough to justify examining each instance.
1818

19-
Code analysis name: INTERLOCKED_ACCESS
19+
Code analysis name: `INTERLOCKED_ACCESS`
2020

2121
## Example
2222

docs/code-quality/c28159.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This warning occurs when you use a function that is semantically equivalent to a
1515

1616
C28159 is a general warning message; the annotation `__drv_preferredFunction` was used (possibly with a conditional `__drv_when`() annotation) to flag a bad coding practice.
1717

18-
Code analysis name: USE_OTHER_FUNCTION
18+
Code analysis name: `USE_OTHER_FUNCTION`
1919

2020
## Example
2121

docs/code-quality/c28160.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ This warning is reported when a `__drv_error` annotation has been encountered.
1616

1717
This annotation is used to flag coding practices that should be fixed, and can be used with a `__drv_when` annotation to indicate specific combinations of parameters.
1818

19-
Code analysis name: ERROR
19+
Code analysis name: `ERROR`

0 commit comments

Comments
 (0)