about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMagnumOpus21 <sivaauturic@gmail.com>2018-08-13 00:10:14 -0400
committerSiva Prasad <sivauturic@gmail.com>2018-09-05 08:56:00 -0400
commit6c66aeb6c00a88e991b1e58247488394f0cac200 (patch)
tree07d4aff7a9084c196aff9ab7d9386bb5f68f32bd
parentefb88b40a179a30118f8d75b54f007151bb7e4c8 (diff)
downloadrust-6c66aeb6c00a88e991b1e58247488394f0cac200.tar.gz
rust-6c66aeb6c00a88e991b1e58247488394f0cac200.zip
Prefixed no_run to the no_std write macro
-rw-r--r--src/libcore/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs
index 1d0ac42de60..6d7e1938cfd 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;
 ///