Skip to content

Commit d021f94

Browse files
author
mikeblome
committed
yet more broken links
1 parent 354bb6a commit d021f94

18 files changed

Lines changed: 25 additions & 25 deletions

docs/c-runtime-library/reference/strstr-wcsstr-mbsstr-mbsstr-l.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,4 @@ lazy found at position 36
219219
[strpbrk, wcspbrk, _mbspbrk, _mbspbrk_l](../../c-runtime-library/reference/strpbrk-wcspbrk-mbspbrk-mbspbrk-l.md)
220220
[strrchr, wcsrchr, _mbsrchr, _mbsrchr_l](../../c-runtime-library/reference/strrchr-wcsrchr-mbsrchr-mbsrchr-l.md)
221221
[strspn, wcsspn, _mbsspn, _mbsspn_l](../../c-runtime-library/reference/strspn-wcsspn-mbsspn-mbsspn-l.md)
222-
[basic_string::find](../../standard-library/basic-string-class.md#basic_string__find)
222+
[basic_string::find](../../standard-library/basic-string-class.md#find)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ basic_ostream<Elem, Tr>& operator<<(const void* val);
242242
A reference to the basic_ostream object.
243243

244244
### Remarks
245-
The `<ostream>` header also defines several global insertion operators. For more information, see [operator<< (\<ostream>)](../standard-library/ostream-operators.md#lt).
245+
The `<ostream>` header also defines several global insertion operators. For more information, see [operator<<](../standard-library/ostream-operators.md#op_lt_lt).
246246

247247
The first member function ensures that an expression of the form **ostr << endl** calls [endl](../standard-library/ostream-functions.md#endl)**(ostr)**, and then returns **\*this**. The second and third functions ensure that other manipulators, such as [hex](../standard-library/ios-functions.md#hex), behave similarly. The remaining functions are all formatted output functions.
248248

docs/standard-library/bitset.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ Defines the template class bitset and two supporting template functions for repr
5353
|||
5454
|-|-|
5555
|[operator&](../standard-library/bitset-operators.md#op_amp)|Performs a bitwise AND between two bitsets.|
56-
|[operator<\<](../standard-library/bitset-operators.md#lt)|Inserts a text representation of the bit sequence into the standard output stream.|
57-
|[operator>>](../standard-library/bitset-operators.md#gt)|Inserts a text representation of the bit sequence into the standard input stream.|
56+
|[operator<\<](../standard-library/bitset-operators.md#op_lt_lt)|Inserts a text representation of the bit sequence into the standard output stream.|
57+
|[operator>>](../standard-library/bitset-operators.md#op_gt_gt)|Inserts a text representation of the bit sequence into the standard input stream.|
5858
|[operator^](../standard-library/bitset-operators.md#op_xor)|Performs a bitwise EXCLUSIVE-OR between two bitsets.|
5959
|[operator&#124;](../standard-library/bitset-operators.md#op_or)|Performs a bitwise OR between two bitsets.|
6060

docs/standard-library/chrono-operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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="lt_eq"></a> operator&lt;=
234+
## <a name="op_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="gt_eq"></a> operator&gt;=
311+
## <a name="op_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.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ Defines the container template class **complex** and its supporting templates.
124124
|[operator+](../standard-library/complex-operators.md#op_add)|Adds two complex numbers, one or both of which may belong to the subset of the type for the real and imaginary parts.|
125125
|[operator-](../standard-library/complex-operators.md#operator-)|Subtracts two complex numbers, one or both of which may belong to the subset of the type for the real and imaginary parts.|
126126
|[operator/](../standard-library/complex-operators.md#op_div)|Divides two complex numbers, one or both of which may belong to the subset of the type for the real and imaginary parts.|
127-
|[operator<\<](../standard-library/complex-operators.md#lt)|A template function that inserts a complex number into the output stream.|
127+
|[operator<\<](../standard-library/complex-operators.md#op_lt_lt)|A template function that inserts a complex number into the output stream.|
128128
|[operator==](../standard-library/complex-operators.md#op_eq_eq)|Tests for equality between two complex numbers, one or both of which may belong to the subset of the type for the real and imaginary parts.|
129-
|[operator>>](../standard-library/complex-operators.md#gt)|A template function that extracts a complex value from the input stream.|
129+
|[operator>>](../standard-library/complex-operators.md#op_gt_gt)|A template function that extracts a complex value from the input stream.|
130130

131131
### Classes
132132

docs/standard-library/hash-map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ translation.priority.mt:
6363

6464
|Hash_map version|Hash_multimap version|Description|
6565
|-----------------------|----------------------------|-----------------|
66-
|[swap (hash_map)](../standard-library/hash-map-class.md#swap)|[swap (hash_multimap)](../standard-library/hash-multimap-class.md#swap_multimap)|Exchanges the elements of two hash_maps or hash_multimaps.|
66+
|[swap (hash_map)](../standard-library/hash-map-class.md#swap)|[swap (hash_multimap)](../standard-library/hash-multimap-class.md#swap)|Exchanges the elements of two hash_maps or hash_multimaps.|
6767

6868
### Classes
6969

docs/standard-library/iomanip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Include the `iostreams` standard header `<iomanip>` to define several manipulato
4848
```
4949

5050
## Remarks
51-
Each of these manipulators returns an unspecified type, called **T1** through **T10**, that overloads both `basic_istream`\<**Elem**, **Tr**>`::`[operator>>](../standard-library/istream-operators.md#gt) and `basic_ostream`\<**Elem**, **Tr**>`::`[operator<<](../standard-library/ostream-operators.md#lt).
51+
Each of these manipulators returns an unspecified type, called **T1** through **T10**, that overloads both `basic_istream`\<**Elem**, **Tr**>`::`[operator>>](../standard-library/istream-operators.md#op_gt_gt) and `basic_ostream`\<**Elem**, **Tr**>`::`[operator<<](../standard-library/ostream-operators.md#op_lt_lt).
5252

5353
### Manipulators
5454

docs/standard-library/istream-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ template class<Elem, Tr> basic_istream<Elem, Tr>& ws(basic_istream<Elem, Tr>& _I
6060
The function calls [setstate](../standard-library/basic-ios-class.md#setstate)( **eofbit**) if it encounters end of file while extracting elements. It returns `_Istr`.
6161

6262
### Example
63-
See [operator>>](../standard-library/istream-operators.md#gt) for an example of using `ws`.
63+
See [operator>>](../standard-library/istream-operators.md#op_gt_gt) for an example of using `ws`.
6464

6565
## See Also
6666
[\<istream>](../standard-library/istream.md)

docs/standard-library/istream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Defines the template class basic_istream, which mediates extractions for the ios
6767

6868
|||
6969
|-|-|
70-
|[operator>>](../standard-library/istream-operators.md#gt)|Extracts characters and strings from the stream.|
70+
|[operator>>](../standard-library/istream-operators.md#op_gt_gt)|Extracts characters and strings from the stream.|
7171

7272
### Classes
7373

docs/standard-library/map-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ The multimap m1 is greater than the multimap m3.
691691
*\
692692
```
693693
694-
## <a name="eq_multimap"></a> operator&gt;=
694+
## <a name="op_gt_eq_multimap"></a> operator&gt;=
695695
Tests if the multimap object on the left side of the operator is greater than or equal to the multimap object on the right side.
696696
697697
```

0 commit comments

Comments
 (0)