Skip to content

Commit bae716a

Browse files
author
mikeblome
committed
fixed incorrect #eq anchor names
1 parent a35b158 commit bae716a

24 files changed

+89
-89
lines changed

docs/standard-library/array-operators.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ The \<array> header includes these `array` non-member comparison template functi
1818

1919
||||
2020
|-|-|-|
21-
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#eq)|
22-
|[operator&lt;](#op_lt)|[operator&lt;=](#eq)|[operator==](#op_eq_eq)|
21+
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#op_gt_eq)|
22+
|[operator&lt;](#op_lt)|[operator&lt;=](#op_lt_eq)|[operator==](#op_eq_eq)|
2323

2424
## <a name="op_neq"></a> operator!=
2525
Array comparison, not equal.
@@ -162,7 +162,7 @@ false
162162
true
163163
```
164164

165-
## <a name="eq"></a> operator&lt;=
165+
## <a name="op_lt_eq"></a> operator&lt;=
166166
Array comparison, less than or equal.
167167

168168
```
@@ -375,7 +375,7 @@ false
375375
true
376376
```
377377

378-
## <a name="eq"></a> operator&gt;=
378+
## <a name="op_gt_eq"></a> operator&gt;=
379379
Array comparison, greater than or equal.
380380

381381
```

docs/standard-library/basic-istream-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class basic_istream : virtual public basic_ios<Elem, Tr>
4444
```
4545

4646
## Remarks
47-
Most of the member functions that overload [operator>>](#op_gt__gt) are formatted input functions. They follow the pattern:
47+
Most of the member functions that overload [operator>>](#op_gt_gt) are formatted input functions. They follow the pattern:
4848

4949
```cpp
5050
iostate state = goodbit;
@@ -149,7 +149,7 @@ setstate(state);
149149

150150
|||
151151
|-|-|
152-
|[operator>>](#op_gt__gt)|Calls a function on the input stream or reads formatted data from the input stream.|
152+
|[operator>>](#op_gt_gt)|Calls a function on the input stream or reads formatted data from the input stream.|
153153
|[operator=](#op_eq)|Assigns the `basic_istream` on the right side of the operator to this object. This is a move assignment involving an `rvalue` reference that does not leave a copy behind.|
154154

155155
## Requirements

docs/standard-library/checked-array-iterator-class.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ int main()
178178
|[operator!=](#op_neq)|Tests two `checked_array_iterator`s for inequality.|
179179
|[operator<](#op_lt)|Tests if the `checked_array_iterator` on the left side of the operator is less than the `checked_array_iterator` on the right side.|
180180
|[operator>](#op_gt)|Tests if the `checked_array_iterator` on the left side of the operator is greater than the `checked_array_iterator` on the right side.|
181-
|[operator<=](#op_lt__eq)|Tests if the `checked_array_iterator` on the left side of the operator is less than or equal to the `checked_array_iterator` on the right side.|
182-
|[operator>=](#op_gt__eq)|Tests if the `checked_array_iterator` on the left side of the operator is greater than or equal to the `checked_array_iterator` on the right side.|
181+
|[operator<=](#op_lt_eq)|Tests if the `checked_array_iterator` on the left side of the operator is less than or equal to the `checked_array_iterator` on the right side.|
182+
|[operator>=](#op_gt_eq)|Tests if the `checked_array_iterator` on the left side of the operator is greater than or equal to the `checked_array_iterator` on the right side.|
183183
|[operator*](#op_star)|Returns the element that a `checked_array_iterator` addresses.|
184184
|[operator->](#operator-_gt)|Returns a pointer to the element addressed by the `checked_array_iterator`.|
185185
|[operator++](#op_add_add)|Increments the `checked_array_iterator` to the next element.|
@@ -486,7 +486,7 @@ bool operator>(const checked_array_iterator<_Iterator>& right) const;
486486

487487
For more information, see [Checked Iterators](../standard-library/checked-iterators.md).
488488

489-
## <a name="eq"></a> checked_array_iterator::operator&lt;=
489+
## <a name="lt_eq"></a> checked_array_iterator::operator&lt;=
490490
Tests if the `checked_array_iterator` on the left side of the operator is less than or equal to the `checked_array_iterator` on the right side.
491491

492492
```
@@ -498,11 +498,11 @@ bool operator<=(const checked_array_iterator<_Iterator>& right) const;
498498
The `checked_array_iterator` to compare against.
499499

500500
### Remarks
501-
See [checked_array_iterator::operator&gt;=](#op_gt__eq) for a code sample.
501+
See [checked_array_iterator::operator&gt;=](#op_gt_eq) for a code sample.
502502

503503
For more information, see [Checked Iterators](../standard-library/checked-iterators.md).
504504

505-
## <a name="eq"></a> checked_array_iterator::operator&gt;=
505+
## <a name="gt_eq"></a> checked_array_iterator::operator&gt;=
506506
Tests if the `checked_array_iterator` on the left side of the operator is greater than or equal to the `checked_array_iterator` on the right side.
507507

508508
```

docs/standard-library/chrono-operators.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ manager: "ghogen"
1515
||||
1616
|-|-|-|
1717
|[operator modulo](#op_modulo)|[operator!=](#op_neq)|[operator&gt;](#op_gt)|
18-
|[operator&gt;=](#eq)|[operator&lt;](#op_lt)|[operator&lt;=](#eq)|
18+
|[operator&gt;=](#op_gt_eq)|[operator&lt;](#op_lt)|[operator&lt;=](#op_lt_eq)|
1919
|[operator*](#op_star)|[operator+](#op_add)|[operator-](#operator-)|
2020
|[operator/](#op_div)|[operator==](#op_eq_eq)|
2121

@@ -231,7 +231,7 @@ constexpr bool operator<(
231231

232232
The second function returns `true` if `Left` precedes `Right`. Otherwise, the function returns `false`.
233233

234-
## <a name="eq"></a> operator&lt;=
234+
## <a name="lt_eq"></a> operator&lt;=
235235
Determines whether one [duration](../standard-library/duration-class.md) or [time_point](../standard-library/time-point-class.md) object is less than or equal to another `duration` or `time_point` object.
236236

237237
```
@@ -308,7 +308,7 @@ constexpr bool operator>(
308308
### Return Value
309309
Each function returns `Right < Left`.
310310

311-
## <a name="eq"></a> operator&gt;=
311+
## <a name="gt_eq"></a> operator&gt;=
312312
Determines whether one [duration](../standard-library/duration-class.md) or [time_point](../standard-library/time-point-class.md) object is greater than or equal to another `duration` or `time_point` object.
313313

314314
```

docs/standard-library/complex-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class complex
8585
|[operator*=](#op_star_eq)|Multiplies a target complex number by a factor, which may be complex or be the same type as are the real and imaginary parts of the complex number.|
8686
|[operator+=](#op_add_eq)|Adds a number to a target complex number, where the number added may be complex or of the same type as are the real and imaginary parts of the complex number to which it is added.|
8787
|[operator-=](#operator-_eq)|Subtracts a number from a target complex number, where the number subtracted may be complex or of the same type as are the real and imaginary parts of the complex number to which it is added.|
88-
|[operator/=](#op__eq)|Divides a target complex number by a divisor, which may be complex or be the same type as are the real and imaginary parts of the complex number.|
88+
|[operator/=](#op_div_eq)|Divides a target complex number by a divisor, which may be complex or be the same type as are the real and imaginary parts of the complex number.|
8989
|[operator=](#op_eq)|Assigns a number to a target complex number, where the number assigned may be complex or of the same type as are the real and imaginary parts of the complex number to which it is being assigned.|
9090

9191
## Requirements
@@ -512,7 +512,7 @@ The modulus of cl2 is: 5
512512
The argument of cl2 is: 2.2143 radians, which is 126.87 degrees.
513513
```
514514

515-
## <a name="eq"></a> complex::operator/=
515+
## <a name="op_div_eq"></a> complex::operator/=
516516
Divides a target complex number by a divisor, which may be complex or be the same type as are the real and imaginary parts of the complex number.
517517

518518
```

docs/standard-library/deque-operators.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ manager: "ghogen"
1414
# &lt;deque&gt; operators
1515
||||
1616
|-|-|-|
17-
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#eq)|
18-
|[operator&lt;](#op_lt)|[operator&lt;=](#eq)|[operator==](#op_eq_eq)|
17+
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#op_gt_eq)|
18+
|[operator&lt;](#op_lt)|[operator&lt;=](#op_lt_eq)|[operator==](#op_eq_eq)|
1919

2020
## <a name="op_neq"></a> operator!=
2121
Tests if the deque object on the left side of the operator is not equal to the deque object on the right side.
@@ -113,7 +113,7 @@ Deque c1 is less than deque c2.
113113
*\
114114
```
115115

116-
## <a name="eq"></a> operator&lt;=
116+
## <a name="op_lt_eq"></a> operator&lt;=
117117
Tests if the deque object on the left side of the operator is less than or equal to the deque object on the right side.
118118

119119
```
@@ -270,7 +270,7 @@ Deque c1 is greater than deque c2.
270270

271271
```
272272
273-
## <a name="eq"></a> operator&gt;=
273+
## <a name="op_gt_eq"></a> operator&gt;=
274274
Tests if the deque object on the left side of the operator is greater than or equal to the deque object on the right side.
275275
276276
```

docs/standard-library/duration-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class duration <duration<Rep, Period1>, Period2>;
8080
|[duration::operator--](#operator--)|Decrements the stored tick count.|
8181
|[duration::operator=](#op_eq)|Reduces the stored tick count modulo a specified value.|
8282
|[duration::operator*=](#op_star_eq)|Multiplies the stored tick count by a specified value.|
83-
|[duration::operator/=](#op__eq)|Divides the stored tick count by the tick count of a specified `duration` object.|
83+
|[duration::operator/=](#op_div_eq)|Divides the stored tick count by the tick count of a specified `duration` object.|
8484
|[duration::operator+](#op_add)|Returns `*this`.|
8585
|[duration::operator++](#op_add_add)|Increments the stored tick count.|
8686
|[duration::operator+=](#op_add_eq)|Adds the tick count of a specified `duration` object to the stored tick count.|
@@ -212,7 +212,7 @@ duration& operator*=(const rep& Mult);
212212
### Return Value
213213
The `duration` object after the multiplication is performed.
214214

215-
## <a name="eq"></a> duration::operator/=
215+
## <a name="op_div_eq"></a> duration::operator/=
216216
Divides the stored tick count by a specified value.
217217

218218
```

docs/standard-library/forward-list-operators.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ manager: "ghogen"
1414
# &lt;forward_list&gt; operators
1515
||||
1616
|-|-|-|
17-
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#eq)|
18-
|[operator&lt;](#op_lt)|[operator&lt;=](#eq)|[operator==](#op_eq_eq)|
17+
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#op_gt_eq)|
18+
|[operator&lt;](#op_lt)|[operator&lt;=](#op_lt_eq)|[operator==](#op_eq_eq)|
1919

2020
## <a name="op_eq_eq"></a> operator==
2121
Tests if the forward list object on the left side of the operator is equal to the forward list object on the right side.
@@ -80,7 +80,7 @@ bool operator<(
8080
### Remarks
8181
This template function overloads `operator<` to compare two objects of template class `forward_list`. The function returns `lexicographical_compare(lhs. begin(), lhs. end(), rhs.begin(), rhs.end())`.
8282

83-
## <a name="eq"></a> operator&lt;=
83+
## <a name="op_lt_eq"></a> operator&lt;=
8484
Tests if the forward list object on the left side of the operator is less than or equal to the forward list object on the right side.
8585

8686
```
@@ -124,7 +124,7 @@ bool operator>(
124124
### Remarks
125125
This template function returns `right < left`.
126126

127-
## <a name="eq"></a> operator&gt;=
127+
## <a name="op_gt_eq"></a> operator&gt;=
128128
Tests if the forward list object on the left side of the operator is greater than or equal to the forward list object on the right side.
129129

130130
```

docs/standard-library/istream-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ basic_istream<Elem, Tr>& operator>>(
7272
The stream
7373

7474
### Remarks
75-
The `basic_istream` class also defines several extraction operators. For more information, see [basic_istream::operator>>](../standard-library/basic-istream-class.md#op_gt__gt).
75+
The `basic_istream` class also defines several extraction operators. For more information, see [basic_istream::operator>>](../standard-library/basic-istream-class.md#op_gt_gt).
7676

7777
The template function:
7878

docs/standard-library/iterator-operators.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ manager: "ghogen"
1414
# &lt;iterator&gt; operators
1515
||||
1616
|-|-|-|
17-
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#eq)|
18-
|[operator&lt;](#op_lt)|[operator&lt;=](#eq)|[operator+](#op_add)|
17+
|[operator!=](#op_neq)|[operator&gt;](#op_gt)|[operator&gt;=](#op_gt_eq)|
18+
|[operator&lt;](#op_lt)|[operator&lt;=](#op_lt_eq)|[operator+](#op_add)|
1919
|[operator-](#operator-)|[operator==](#op_eq_eq)|
2020

2121
## <a name="op_neq"></a> operator!=
@@ -296,7 +296,7 @@ The iterator rVPOS2 now points to the second element
296296
The iterator rVPOS1 is less than the iterator rVPOS2.
297297
```
298298

299-
## <a name="eq"></a> operator&lt;=
299+
## <a name="op_lt_eq"></a> operator&lt;=
300300
Tests if the iterator object on the left side of the operator is less than or equal to the iterator object on the right side.
301301

302302
```
@@ -472,7 +472,7 @@ The iterator rVPOS1 now points to the second element
472472
The iterator rVPOS1 is greater than the iterator rVPOS2.
473473
```
474474

475-
## <a name="eq"></a> operator&gt;=
475+
## <a name="op_gt_eq"></a> operator&gt;=
476476
Tests if the iterator object on the left side of the operator is greater than or equal to the iterator object on the right side.
477477

478478
```

0 commit comments

Comments
 (0)