Skip to content

Commit 1e809f5

Browse files
committed
"the trait Hash" => "the Hash trait"
1 parent 1a7d3e1 commit 1e809f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/hash/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//! ```
3939
//!
4040
//! If you need more control over how a value is hashed, you need to implement
41-
//! the trait `Hash`:
41+
//! the `Hash` trait:
4242
//!
4343
//! ```rust
4444
//! use std::hash::{Hash, Hasher, SipHasher};
@@ -106,7 +106,7 @@ mod sip;
106106
/// ## How can I implement `Hash`?
107107
///
108108
/// If you need more control over how a value is hashed, you need to implement
109-
/// the trait `Hash`:
109+
/// the `Hash` trait:
110110
///
111111
/// ```
112112
/// use std::hash::{Hash, Hasher};

0 commit comments

Comments
 (0)