Skip to content

Commit 9d21563

Browse files
authored
Update future-enums.md
1 parent 0d86bc4 commit 9d21563

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

docs/standard-library/future-enums.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ f1_keywords: ["future/std::future_errc", "future/std::future_status", "future/st
66
---
77
# `<future>` enums
88

9-
## <a name="future_errc"></a> future_errc Enumeration
9+
The `<future>` header provides the following enums:
1010

11-
Supplies symbolic names for all of the errors that are reported by the [future_error](../standard-library/future-error-class.md) class.
11+
## <a name="future_errc"></a> `future_errc` enumeration
12+
13+
Supplies symbolic names for all of the errors that are reported by the [`future_error`](../standard-library/future-error-class.md) class.
1214

1315
```cpp
1416
class future_errc {
@@ -19,7 +21,7 @@ class future_errc {
1921
};
2022
```
2123
22-
## <a name="future_status"></a> future_status Enumeration
24+
## <a name="future_status"></a> `future_status` enumeration
2325
2426
Supplies symbolic names for the reasons that a timed wait function can return.
2527
@@ -31,9 +33,9 @@ enum future_status{
3133
};
3234
```
3335

34-
## <a name="launch"></a> launch Enumeration
36+
## <a name="launch"></a> `launch` enumeration
3537

36-
Represents a bitmask type that describes the possible modes for the template function [async](../standard-library/future-functions.md#async).
38+
Represents a bitmask type that describes the possible modes for the template function [`async`](../standard-library/future-functions.md#async).
3739

3840
```cpp
3941
class launch{
@@ -44,4 +46,4 @@ class launch{
4446
4547
## See also
4648
47-
[\<future>](../standard-library/future.md)
49+
[\<future>](future.md)

0 commit comments

Comments
 (0)