Skip to content

Commit 2fca1b0

Browse files
authored
Update posts/2019-11-07-Rust-1.39.0.md
1 parent ca1b903 commit 2fca1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/2019-11-07-Rust-1.39.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ A promise made is a promise kept. So in Rust 1.39.0, we are pleased to announce
3636

3737
An `async` function, which you can introduce by writing `async fn` instead of `fn`, does nothing other than to return a `Future` when called. This `Future` is a suspended computation which you can drive to completion by `.await`ing it. Besides `async fn`, `async { ... }` and `async move { ... }` blocks, which act like closures, can be used to define "async literals".
3838

39-
For more on the release of `async` / `.await`, read [Niko Matsakis's blog post].
39+
For more on the release of `async` / `.await`, read [Niko Matsakis's blog post][niko-post-async].
4040

4141
### References to by-move bindings in `match` guards
4242

0 commit comments

Comments
 (0)