about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2021-03-17 09:27:34 -0400
committerGitHub <noreply@github.com>2021-03-17 09:27:34 -0400
commita7491d932fdfe9ccb1950c1ab660c0bf493cc7bb (patch)
treeb86551c386566fa24b05910f29b4da86d7045c67
parent68f41b8328d76e171a17a0ac60351f576b9116b5 (diff)
downloadrust-a7491d932fdfe9ccb1950c1ab660c0bf493cc7bb.tar.gz
rust-a7491d932fdfe9ccb1950c1ab660c0bf493cc7bb.zip
fix whitespace
Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
-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