We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e14b8 commit 0e69b3cCopy full SHA for 0e69b3c
src/libcore/hash/mod.rs
@@ -169,7 +169,7 @@ pub trait Hash {
169
/// println!("Hash is {:x}!", hasher.finish());
170
/// ```
171
///
172
- /// [`Hasher`]: trait.Hasher.html
+ /// [`Hasher`]: hash::Hasher
173
#[stable(feature = "rust1", since = "1.0.0")]
174
fn hash<H: Hasher>(&self, state: &mut H);
175
@@ -187,7 +187,7 @@ pub trait Hash {
187
188
189
190
191
#[stable(feature = "hash_slice", since = "1.3.0")]
192
fn hash_slice<H: Hasher>(data: &[Self], state: &mut H)
193
where Self: Sized
0 commit comments