From 5d1bca0914e14e6e3d6b8b2c9d30a634b2d01d48 Mon Sep 17 00:00:00 2001 From: Marc Brinkmann Date: Tue, 30 Oct 2018 10:24:31 +0100 Subject: [PATCH] Ignore non-compiling example, instead of `no_run`'ing it.' --- src/traits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/traits.rs b/src/traits.rs index ba3b8cd..56bffe4 100644 --- a/src/traits.rs +++ b/src/traits.rs @@ -41,7 +41,7 @@ impl SessionIdT for S where S: Display + Serialize + Send + Sync + Clone {} /// through `let _ = ...` or similar constructs, the implicit assumption should explicitly be /// checked instead: /// -/// ```rust,no_run +/// ```ignore /// assert!(alg.propose(123).expect("Could not propose value").is_empty(), /// "Algorithm will never output anything on first proposal"); /// ```