Skip to content

Commit c8355ba

Browse files
authored
Add backticks in <array> operators reference
1 parent db47863 commit c8355ba

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

docs/standard-library/array-operators.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ f1_keywords: ["array/std::array::operator!=", "array/std::array::operator<", "ar
66
---
77
# `<array>` operators
88

9-
The \<array> header includes these **array** non-member comparison template functions.
9+
The `<array>` header includes these **array** non-member comparison template functions.
1010

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

1313
Array comparison, not equal.
1414

@@ -21,16 +21,16 @@ bool operator!=(
2121

2222
### Parameters
2323

24-
*Ty*\
24+
*`Ty`*\
2525
The type of an element.
2626

27-
*N*\
27+
*`N`*\
2828
The size of the array.
2929

30-
*left*\
30+
*`left`*\
3131
Left container to compare.
3232

33-
*right*\
33+
*`right`*\
3434
Right container to compare.
3535

3636
### Remarks
@@ -94,16 +94,16 @@ bool operator<(
9494

9595
### Parameters
9696

97-
*Ty*\
97+
*`Ty`*\
9898
The type of an element.
9999

100-
*N*\
100+
*`N`*\
101101
The size of the array.
102102

103-
*left*\
103+
*`left`*\
104104
Left container to compare.
105105

106-
*right*\
106+
*`right`*\
107107
Right container to compare.
108108

109109
### Remarks
@@ -167,16 +167,16 @@ bool operator<=(
167167

168168
### Parameters
169169

170-
*Ty*\
170+
*`Ty`*\
171171
The type of an element.
172172

173-
*N*\
173+
*`N`*\
174174
The size of the array.
175175

176-
*left*\
176+
*`left`*\
177177
Left container to compare.
178178

179-
*right*\
179+
*`right`*\
180180
Right container to compare.
181181

182182
### Remarks
@@ -227,7 +227,7 @@ true
227227
false
228228
```
229229

230-
## <a name="op_eq_eq"></a> operator==
230+
## <a name="op_eq_eq"></a> `operator==`
231231

232232
Array comparison, equal.
233233

@@ -240,16 +240,16 @@ bool operator==(
240240

241241
### Parameters
242242

243-
*Ty*\
243+
*`Ty`*\
244244
The type of an element.
245245

246-
*N*\
246+
*`N`*\
247247
The size of the array.
248248

249-
*left*\
249+
*`left`*\
250250
Left container to compare.
251251

252-
*right*\
252+
*`right`*\
253253
Right container to compare.
254254

255255
### Remarks
@@ -313,16 +313,16 @@ bool operator>(
313313

314314
### Parameters
315315

316-
*Ty*\
316+
*`Ty`*\
317317
The type of an element.
318318

319-
*N*\
319+
*`N`*\
320320
The size of the array.
321321

322-
*left*\
322+
*`left`*\
323323
Left container to compare.
324324

325-
*right*\
325+
*`right`*\
326326
Right container to compare.
327327

328328
### Remarks
@@ -386,16 +386,16 @@ bool operator>=(
386386

387387
### Parameters
388388

389-
*Ty*\
389+
*`Ty`*\
390390
The type of an element.
391391

392-
*N*\
392+
*`N`*\
393393
The size of the array.
394394

395-
*left*\
395+
*`left`*\
396396
Left container to compare.
397397

398-
*right*\
398+
*`right`*\
399399
Right container to compare.
400400

401401
### Remarks
@@ -448,4 +448,4 @@ false
448448

449449
## See also
450450

451-
[\<array>](../standard-library/array.md)
451+
[`<array>`](../standard-library/array.md)

0 commit comments

Comments
 (0)