Make Derivable header be an h2 instead of an h1

This matches the other subsections.
This commit is contained in:
Carol (Nichols || Goulding) 2016-05-21 12:01:01 -04:00
parent bbfb6e762b
commit 2f44053332

View file

@ -171,7 +171,7 @@ pub trait Unsize<T: ?Sized> {
/// 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`.