From 56239a9035a5f2f868b4a63a968ecf1a38cb61a2 Mon Sep 17 00:00:00 2001 From: Vidhan Bhatt Date: Mon, 8 May 2023 11:50:49 -0400 Subject: [PATCH] macros: fix typo in doc comment (#5671) --- tokio-macros/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index 1d024f597..919c4ac0b 100644 --- a/tokio-macros/src/lib.rs +++ b/tokio-macros/src/lib.rs @@ -209,7 +209,7 @@ pub fn main(args: TokenStream, item: TokenStream) -> TokenStream { /// Marks async function to be executed by selected runtime. This macro helps set up a `Runtime` /// without requiring the user to use [Runtime](../tokio/runtime/struct.Runtime.html) or -/// [Builder](../tokio/runtime/struct.builder.html) directly. +/// [Builder](../tokio/runtime/struct.Builder.html) directly. /// /// ## Function arguments: ///