Skip to content

Commit 93b9c8a

Browse files
authored
Fix dangling "see ..." in complex class template specializations
1 parent 087e22d commit 93b9c8a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/standard-library/complex-double.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ A complex number of type **`double`**.
4646
4747
The explicit specialization of the class template complex to a complex class of type **`double`** differs from the class template only in the constructors it defines. The conversion from **`float`** to **`double`** is allowed to be implicit, but the conversion from **`long double`** to **`double`** is required to be **`explicit`**. The use of **`explicit`** rules out the initiation with type conversion using assignment syntax.
4848
49-
For more information on the class template `complex`, see [complex Class](../standard-library/complex-class.md). For a list of members of the class template `complex`, see .
49+
For more information on the class template `complex` and its members, see [`complex` Class](complex-class.md).
5050
5151
## Example
5252

docs/standard-library/complex-float.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ A complex number of type **`float`**.
5151
5252
The explicit specialization of the class template complex to a complex class of type **`float`** differs from the class template only in the constructors it defines. The conversion from **`float`** to **`double`** is allowed to be implicit, but the less safe conversion from **`float`** to **`long double`** is required to be **`explicit`**. The use of **`explicit`** rules out the initiation with type conversion using assignment syntax.
5353
54-
For more information on the class template `complex`, see [complex Class](../standard-library/complex-class.md). For a list of members of the class template `complex`, see .
54+
For more information on the class template `complex` and its members, see [`complex` Class](complex-class.md).
5555
5656
## Example
5757

docs/standard-library/complex-long-double.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ A complex number of type **`long double`**.
4646
4747
The explicit specialization of the class template `complex` to a complex class of type **`long double`** differs from the class template only in the constructors it defines. The conversion from **`long double`** to **`float`** is allowed to be implicit, but the conversion from **`double`** to **`long double`** is required to be **`explicit`**. The use of **`explicit`** rules out the initiation with type conversion using assignment syntax.
4848
49-
For more information on the class template `complex` and its members, see [complex Class](../standard-library/complex-class.md).
49+
For more information on the class template `complex` and its members, see [`complex` Class](complex-class.md).
5050
5151
**Microsoft-specific**: The **`long double`** and **`double`** types have the same representation, but are distinct types. For more information, see [Built-in types](../cpp/fundamental-types-cpp.md).
5252

0 commit comments

Comments
 (0)