From 94e8a6aa3bafa11b1cef8a5c206f56ca11826ffc Mon Sep 17 00:00:00 2001 From: MagnumOpus21 Date: Tue, 21 Aug 2018 12:32:59 -0400 Subject: [PATCH] Made the requested changes for Note: and no_std within backticks --- src/libcore/macros.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index 6d7e1938cfde..028b2c7658bf 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -350,8 +350,8 @@ macro_rules! try { /// assert_eq!(v, b"s = \"abc 123\""); /// ``` /// -/// Note : This macro can be used in no_std setups as well -/// In a no_std setup you are responsible for the +/// Note: This macro can be used in no_std setups as well +/// In a `no_std` setup you are responsible for the /// implementation details of the components. /// /// ```no_run