From e2851e5ad7eec81d58bac0d3110b65aa9946e70a Mon Sep 17 00:00:00 2001 From: Folyd Date: Thu, 29 Apr 2021 12:25:46 +0800 Subject: [PATCH] Make clippy happy --- tracing-attributes/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracing-attributes/src/lib.rs b/tracing-attributes/src/lib.rs index a603baa808..adc2410a3a 100644 --- a/tracing-attributes/src/lib.rs +++ b/tracing-attributes/src/lib.rs @@ -803,7 +803,7 @@ impl Parse for Field { } else { None }; - Ok(Self { name, kind, value }) + Ok(Self { name, value, kind }) } }