From fc5f4f7ca33913e640903a74da43c80e6de588df Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 28 Sep 2023 18:21:08 +0000 Subject: [PATCH] clarify async fn description --- src/exercises/async_fn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exercises/async_fn.md b/src/exercises/async_fn.md index 285de55..5c2256b 100644 --- a/src/exercises/async_fn.md +++ b/src/exercises/async_fn.md @@ -1,6 +1,6 @@ # Async `to_string` -Make this compile and pass tests: +Define the `AsyncToString` trait to make this compile and pass tests (don't edit existing code): ```rust,ignore,mdbook-runnable # extern crate futures;