From c177c39f5b5d5c80c8c744fb8c04225eccd8165b Mon Sep 17 00:00:00 2001 From: Danbo <140512416+dannbbb1@users.noreply.github.com> Date: Wed, 18 Dec 2024 08:39:35 -0500 Subject: [PATCH] Update README.md --- utils/maybe_async/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/maybe_async/README.md b/utils/maybe_async/README.md index 0dd895d60..bf2342754 100644 --- a/utils/maybe_async/README.md +++ b/utils/maybe_async/README.md @@ -39,7 +39,7 @@ async fn hello_world() { ## maybe_await -To compliment `maybe_async` we also have the `maybe_await` procedural macro that conditionally adds the `.await` keyword to the end of an expression depending on the `async` feature flag. +To complement `maybe_async` we also have the `maybe_await` procedural macro that conditionally adds the `.await` keyword to the end of an expression depending on the `async` feature flag. ```rust #[maybe_async]