From 8f5c0f0b491868a3811b434321f871892eab02c1 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 1 Nov 2014 14:35:11 -0700 Subject: [PATCH] Fix doc header size --- phf/src/map.rs | 2 +- phf/src/ordered_map.rs | 2 +- phf/src/ordered_set.rs | 2 +- phf/src/set.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/phf/src/map.rs b/phf/src/map.rs index 1dfd4fcf..a320a5b5 100644 --- a/phf/src/map.rs +++ b/phf/src/map.rs @@ -25,7 +25,7 @@ use shared::PhfHash; /// # fn main() {} /// ``` /// -/// # Note +/// ## Note /// /// The fields of this struct are public so that they may be initialized by the /// `phf_map` macro. They are subject to change at any time and should never diff --git a/phf/src/ordered_map.rs b/phf/src/ordered_map.rs index 10dd48e6..e19fd6f8 100644 --- a/phf/src/ordered_map.rs +++ b/phf/src/ordered_map.rs @@ -28,7 +28,7 @@ use collections::Map as MapTrait; /// # fn main() {} /// ``` /// -/// # Note +/// ## Note /// /// The fields of this struct are public so that they may be initialized by the /// `phf_ordered_map` macro. They are subject to change at any time and should diff --git a/phf/src/ordered_set.rs b/phf/src/ordered_set.rs index d59ae197..6ce43c8d 100644 --- a/phf/src/ordered_set.rs +++ b/phf/src/ordered_set.rs @@ -27,7 +27,7 @@ use collections::Set as SetTrait; /// # fn main() {} /// ``` /// -/// # Note +/// ## Note /// /// The fields of this struct are public so that they may be initialized by the /// `phf_ordered_set` macro. They are subject to change at any time and should diff --git a/phf/src/set.rs b/phf/src/set.rs index bd77b69c..304e3553 100644 --- a/phf/src/set.rs +++ b/phf/src/set.rs @@ -25,7 +25,7 @@ use map; /// # fn main() {} /// ``` /// -/// # Note +/// ## Note /// /// The fields of this struct are public so that they may be initialized by the /// `phf_set` macro. They are subject to change at any time and should never be