From d4b43620a09531cce7353cc48adcac18a2b68219 Mon Sep 17 00:00:00 2001 From: Kaede Hoshikawa Date: Mon, 22 Aug 2022 00:30:19 +0900 Subject: [PATCH] Fix clippy notice. --- packages/yew/src/platform/rt_tokio/local_worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/yew/src/platform/rt_tokio/local_worker.rs b/packages/yew/src/platform/rt_tokio/local_worker.rs index 5103f57eb03..e717dc19614 100644 --- a/packages/yew/src/platform/rt_tokio/local_worker.rs +++ b/packages/yew/src/platform/rt_tokio/local_worker.rs @@ -1,7 +1,7 @@ //! We use a local worker implementation that does not produce a JoinHandle for spawn_pinned. //! This avoids the cost to acquire a JoinHandle. //! -//! See: https://github.com/tokio-rs/tokio/issues/4819 +//! See https://github.com/tokio-rs/tokio/issues/4819 //! //! We will not be able to produce a meaningful JoinHandle until WebAssembly targets support //! unwinding.