Skip to content

Commit be45f8f

Browse files
authored
Fix IntoFuture link
1 parent 43cdd4b commit be45f8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/expressions/await-expr.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
An `await` expression is a syntactic construct for suspending a computation
88
provided by an implementation of `std::future::IntoFuture` until the given
99
future is ready to produce a value.
10-
The syntax for an await expression is an expression with a type that implements the [IntoFuture] trait, called the *future operand*, then the token `.`, and then the `await` keyword.
10+
The syntax for an await expression is an expression with a type that implements the [`IntoFuture`] trait, called the *future operand*, then the token `.`, and then the `await` keyword.
1111
Await expressions are legal only within an [async context], like an [`async fn`] or an [`async` block].
1212

1313
More specifically, an await expression has the following effect.

0 commit comments

Comments
 (0)