From 8c791fd0bf2a8914eab4a706a476004f540d17fe Mon Sep 17 00:00:00 2001 From: Chris Pick Date: Tue, 22 May 2018 18:29:15 -0400 Subject: [PATCH] Fix Runtime::new's doc link to tokio::run (#371) --- src/runtime/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/mod.rs b/src/runtime/mod.rs index 6584f9402..ff61d8700 100644 --- a/src/runtime/mod.rs +++ b/src/runtime/mod.rs @@ -234,7 +234,7 @@ impl Runtime { /// tasks are scheduled to run. /// /// Most users will not need to call this function directly, instead they - /// will use [`tokio::run`][fn.run.html]. + /// will use [`tokio::run`](fn.run.html). /// /// See [module level][mod] documentation for more details. ///