about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-23 14:09:43 -0400
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-23 14:39:41 -0400
commit1e809f57a45a187a2a8c49d4d93ec64c089873ca (patch)
tree3a9da50f8a43d504e1e02938f862c65c56ba90b9
parent1a7d3e13444bb195692e37f9ecfc000d5da9ef57 (diff)
downloadrust-1e809f57a45a187a2a8c49d4d93ec64c089873ca.tar.gz
rust-1e809f57a45a187a2a8c49d4d93ec64c089873ca.zip
"the trait `Hash`" => "the `Hash` trait"
-rw-r--r--src/libcore/hash/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/hash/mod.rs b/src/libcore/hash/mod.rs
index 844a24e80d1..051eb974895 100644
--- a/src/libcore/hash/mod.rs
+++ b/src/libcore/hash/mod.rs
@@ -38,7 +38,7 @@
 //! ```
 //!
 //! If you need more control over how a value is hashed, you need to implement
-//! the trait `Hash`:
+//! the `Hash` trait:
 //!
 //! ```rust
 //! use std::hash::{Hash, Hasher, SipHasher};
@@ -106,7 +106,7 @@ mod sip;
 /// ## How can I implement `Hash`?
 ///
 /// If you need more control over how a value is hashed, you need to implement
-/// the trait `Hash`:
+/// the `Hash` trait:
 ///
 /// ```
 /// use std::hash::{Hash, Hasher};