From 5e7039411b084bec5b75741b09c73ab177ddef7b Mon Sep 17 00:00:00 2001 From: MagnumOpus21 Date: Thu, 23 Aug 2018 19:21:54 -0400 Subject: [PATCH] Added a missing backtick to no std --- 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 028b2c7658bf..ed07cf50b227 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -350,7 +350,7 @@ macro_rules! try { /// assert_eq!(v, b"s = \"abc 123\""); /// ``` /// -/// Note: This macro can be used in no_std setups as well +/// 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. ///