From 6c66aeb6c00a88e991b1e58247488394f0cac200 Mon Sep 17 00:00:00 2001 From: MagnumOpus21 Date: Mon, 13 Aug 2018 00:10:14 -0400 Subject: [PATCH] Prefixed no_run to the no_std write macro --- src/libcore/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index 1d0ac42de601..6d7e1938cfde 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -354,7 +354,7 @@ macro_rules! try { /// In a no_std setup you are responsible for the /// implementation details of the components. /// -/// ``` +/// ```no_run /// # extern crate core; /// use core::fmt::Write; ///