From 80a56c21de02f3a40aa0d781a7c6339f83b86bf8 Mon Sep 17 00:00:00 2001 From: Kisaragi Marine Date: Tue, 12 Mar 2024 20:55:43 +0900 Subject: [PATCH] chore: adjust comment to explain why clippy::future_not_send is avoided in entire crate --- packages/toy-blog/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/toy-blog/src/main.rs b/packages/toy-blog/src/main.rs index f79937c..efbc7af 100644 --- a/packages/toy-blog/src/main.rs +++ b/packages/toy-blog/src/main.rs @@ -1,7 +1,7 @@ #![deny(clippy::all)] #![warn(clippy::pedantic, clippy::nursery)] // This fires on HttpRequest, which is not FP. -// But we don't want to fire +// But we don't want to be triggered because service function often refers it. #![allow(clippy::future_not_send)] mod extension;