From 2f4405333243c3bb0b3a210201c98a69fe7a1c4a Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Sat, 21 May 2016 12:01:01 -0400 Subject: [PATCH] Make `Derivable` header be an h2 instead of an h1 This matches the other subsections. --- src/libcore/marker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index e519071a56ee..150a091c4bd3 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -171,7 +171,7 @@ pub trait Unsize { /// then it might be prudent to not implement `Copy`. This is because removing `Copy` is a breaking /// change: that second example would fail to compile if we made `Foo` non-`Copy`. /// -/// # Derivable +/// ## Derivable /// /// This trait can be used with `#[derive]` if all of its components implement `Copy` and the type /// implements `Clone`. The implementation will copy the bytes of each field using `memcpy`.