From 72b3139c3f87683b82775bcced09583ab25ff3a1 Mon Sep 17 00:00:00 2001 From: Havvy Date: Wed, 27 Sep 2017 23:31:29 -0700 Subject: [PATCH] Backticks. --- src/libcore/mem.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/mem.rs b/src/libcore/mem.rs index 56685a67ad5..493dd458c1b 100644 --- a/src/libcore/mem.rs +++ b/src/libcore/mem.rs @@ -209,7 +209,7 @@ pub fn forget(t: T) { /// The mutability of a pointer does not change its size. As such, `&T` and `&mut T` /// have the same size. Likewise for `*const T` and `*mut T`. /// -/// # Size of #[repr(C)] items +/// # Size of `#[repr(C)]` items /// /// The `C` representation for items has a defined layout. With this layout, /// the size of items is also stable as long as all fields have a stable size.