From 3dd538d04bad6e07b04cd8c2b3fb14d09625389f Mon Sep 17 00:00:00 2001 From: findmyhappy Date: Wed, 4 Jun 2025 11:58:46 +0800 Subject: [PATCH] chore: add missing backticks Signed-off-by: findmyhappy --- primitives/tests/api.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/primitives/tests/api.rs b/primitives/tests/api.rs index b03a7611b..f020acf27 100644 --- a/primitives/tests/api.rs +++ b/primitives/tests/api.rs @@ -63,7 +63,7 @@ static SCRIPT: ScriptBuf = ScriptBuf::new(); static BYTES: [u8; 32] = [0x00; 32]; /// Public structs that derive common traits. -// C-COMMON-TRAITS excluding `Debug, Default, Display, Ord, PartialOrd, Hash`. +// C-COMMON-TRAITS excluding `Debug`, `Default`, `Display`, `Ord`, `PartialOrd, `Hash`. #[derive(Clone, PartialEq, Eq)] struct CommonTraits { a: block::Block, @@ -120,7 +120,7 @@ struct Clone<'a> { } /// Public structs that derive common traits. -// C-COMMON-TRAITS excluding `Clone`, `Debug, `Default`, and `Display` +// C-COMMON-TRAITS excluding `Clone`, `Debug`, `Default`, and `Display` #[derive(PartialEq, Eq, PartialOrd, Ord, Hash)] struct Ord { // a: block::Block,