From 15936dc004e84496ebb11f6c809f495cc48cdb73 Mon Sep 17 00:00:00 2001 From: Carl Fredrik Samson Date: Tue, 25 Feb 2020 18:27:10 +0100 Subject: [PATCH] try to get CI to build --- src/1_background_information.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/1_background_information.md b/src/1_background_information.md index 36d6aca..e4f5d54 100644 --- a/src/1_background_information.md +++ b/src/1_background_information.md @@ -67,7 +67,7 @@ The bulk of an async program will consist of non-leaf-futures, which are a kind of pause-able computation. This is an important distinction since these futures represents a _set of operations_. Often, such a task will `await` a leaf future as one of many operations to complete the task. -```rust, ignore, noplaypen +```rust, ignore, noplaypen, edition2018 // Non-leaf-future let non_leaf = async { let mut stream = TcpStream::connect("127.0.0.1:3000").await.unwrap();// <- yield