Skip to content

Commit 36ee0db

Browse files
authored
Add backticks in <allocators> operators reference
1 parent 333929c commit 36ee0db

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/standard-library/allocators-operators.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ f1_keywords: ["allocators/std::operator!=", "allocators/std::operator=="]
88

99
These are the global template operator functions defined in `<allocators>`. For class member operator functions, see the class documentation.
1010

11-
## <a name="op_neq"></a> operator!=
11+
## <a name="op_neq"></a> `operator!=`
1212

1313
Tests for inequality between allocator objects of a specified class.
1414

@@ -21,10 +21,10 @@ bool operator!=(
2121
2222
### Parameters
2323
24-
*left*\
24+
*`left`*\
2525
One of the allocator objects to be tested for inequality.
2626
27-
*right*\
27+
*`right`*\
2828
One of the allocator objects to be tested for inequality.
2929
3030
### Return Value
@@ -35,7 +35,7 @@ One of the allocator objects to be tested for inequality.
3535
3636
The template operator returns `!(left == right)`.
3737
38-
## <a name="op_eq_eq"></a> operator==
38+
## <a name="op_eq_eq"></a> `operator==`
3939
4040
Tests for equality between allocator objects of a specified class.
4141
@@ -48,10 +48,10 @@ bool operator==(
4848

4949
### Parameters
5050

51-
*left*\
51+
*`left`*\
5252
One of the allocator objects to be tested for equality.
5353

54-
*right*\
54+
*`right`*\
5555
One of the allocator objects to be tested for equality.
5656

5757
### Return Value
@@ -64,4 +64,4 @@ This template operator returns `left.equals(right)`.
6464

6565
## See also
6666

67-
[\<allocators>](allocators-header.md)
67+
[`<allocators>`](allocators-header.md)

0 commit comments

Comments
 (0)