about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/hash/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/hash/mod.rs b/library/core/src/hash/mod.rs
index 2ff87f48907..05154f18a9f 100644
--- a/library/core/src/hash/mod.rs
+++ b/library/core/src/hash/mod.rs
@@ -6,7 +6,7 @@
 //! [hash]: https://en.wikipedia.org/wiki/Hash_function
 //! [`HashMap`]: ../../std/collections/struct.HashMap.html
 //! [`HashSet`]: ../../std/collections/struct.HashSet.html
-
+//!
 //! The simplest way to make a type hashable is to use `#[derive(Hash)]`:
 //!
 //! # Examples