Skip to content

Commit 0e69b3c

Browse files
fixing links
1 parent 26e14b8 commit 0e69b3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/hash/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub trait Hash {
169169
/// println!("Hash is {:x}!", hasher.finish());
170170
/// ```
171171
///
172-
/// [`Hasher`]: trait.Hasher.html
172+
/// [`Hasher`]: hash::Hasher
173173
#[stable(feature = "rust1", since = "1.0.0")]
174174
fn hash<H: Hasher>(&self, state: &mut H);
175175

@@ -187,7 +187,7 @@ pub trait Hash {
187187
/// println!("Hash is {:x}!", hasher.finish());
188188
/// ```
189189
///
190-
/// [`Hasher`]: trait.Hasher.html
190+
/// [`Hasher`]: hash::Hasher
191191
#[stable(feature = "hash_slice", since = "1.3.0")]
192192
fn hash_slice<H: Hasher>(data: &[Self], state: &mut H)
193193
where Self: Sized

0 commit comments

Comments
 (0)