From c858bbe66d5de0c2f20ae39d141999f452d30d87 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Thu, 17 Jul 2025 18:28:23 +0300 Subject: [PATCH] Ignore macro doc comment tests --- crates/format/src/macros.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/format/src/macros.rs b/crates/format/src/macros.rs index 0c4996d..ed67012 100644 --- a/crates/format/src/macros.rs +++ b/crates/format/src/macros.rs @@ -2,13 +2,13 @@ /// /// For example, the macro invocation seen below: /// -/// ```rust,no_run +/// ```rust,ignore /// define_wrapper_type!(CaseId => usize); /// ``` /// /// Would define a wrapper type that looks like the following: /// -/// ```rust,no_run +/// ```rust,ignore /// pub struct CaseId(usize); /// ``` /// @@ -20,7 +20,7 @@ /// /// Take the following as an example: /// -/// ```rust,no_run +/// ```rust,ignore /// struct State { /// contracts: HashMap>> /// } @@ -33,7 +33,7 @@ /// in that the types tell us what the code is referring to. The above code is /// transformed into /// -/// ```rust,no_run +/// ```rust,ignore /// struct State { /// contracts: HashMap> /// }