about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorMagnumOpus21 <sivaauturic@gmail.com>2018-08-21 12:32:59 -0400
committerSiva Prasad <sivauturic@gmail.com>2018-09-05 08:56:00 -0400
commit94e8a6aa3bafa11b1cef8a5c206f56ca11826ffc (patch)
tree71f0ca9d9ec9a4e1cfc4e6ec3d0aea1ab5e2562a /src/libcore
parent6c66aeb6c00a88e991b1e58247488394f0cac200 (diff)
downloadrust-94e8a6aa3bafa11b1cef8a5c206f56ca11826ffc.tar.gz
rust-94e8a6aa3bafa11b1cef8a5c206f56ca11826ffc.zip
Made the requested changes for Note: and no_std within backticks
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/macros.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs
index 6d7e1938cfd..028b2c7658b 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