about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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