From c93419347642fbbb14af4e2177f82bc4bc6b8a55 Mon Sep 17 00:00:00 2001 From: Xavier Lau Date: Tue, 8 Nov 2022 17:28:50 +0800 Subject: [PATCH] Ignore `impl_apis` example doc test --- substrate-minimal/subrpcer/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/substrate-minimal/subrpcer/src/lib.rs b/substrate-minimal/subrpcer/src/lib.rs index ca05e615..1bf954b8 100644 --- a/substrate-minimal/subrpcer/src/lib.rs +++ b/substrate-minimal/subrpcer/src/lib.rs @@ -5,12 +5,14 @@ #![deny(missing_docs)] +// TODO: https://github.com/rust-lang/rust/issues/82715 +// This should be `no_run` eventually /// Define a group of APIs. /// /// Require [serde](https://crates.io/crates/serde) and [serde_json](https://crates.io/crates/serde_json) as the dependencies. /// /// # Example -/// ``` +/// ```ignore /// impl_apis! { /// state { /// call { params: [name, bytes], opt_params: [hash] }