From 715172fd09a984016b87104b1fdcd2f21c39ec66 Mon Sep 17 00:00:00 2001 From: guoweikang Date: Tue, 15 Oct 2024 16:37:40 +0800 Subject: [PATCH] fix clippy warnning Signed-off-by: guoweikang --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index b38ec07..1e79004 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -96,7 +96,7 @@ pub use raw_list::{GetLinks, Links}; macro_rules! def_node { ($struct_name:ident, $type:ty) => { #[doc = concat!("Struct ", stringify!($struct_name), - "is a Node wrapper for type ", stringify!($type))] + "is a Node wrapper for type ", stringify!($type))] pub struct $struct_name { pub inner: $type, links: $crate::Links, @@ -135,7 +135,7 @@ macro_rules! def_node { macro_rules! def_generic_node { ($struct_name:ident) => { #[doc = concat!("Struct ", stringify!($struct_name), - "is a Node wrapper include a generic type")] + "is a Node wrapper include a generic type")] pub struct $struct_name { pub inner: T, links: $crate::Links,