From 978384f0fbad7e94c4eac08cf5d0a269e3658510 Mon Sep 17 00:00:00 2001 From: FineFindus <63370021+FineFindus@users.noreply.github.com> Date: Fri, 19 Jul 2024 09:06:59 +0200 Subject: [PATCH] docs(README): fix syntax typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b6f8ea..ed64317 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ If in another module, we have that code: let jh = tokio::spawn(async move { // make yourself wanted tokio::time::sleep(std::time::Duration::from_secs(1)).await; - println!("Oh hey, you're early!")" + println!("Oh hey, you're early!"); 42 }); let answer = jh.await.unwrap();