about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-11-11 13:38:08 +0100
committerGitHub <noreply@github.com>2017-11-11 13:38:08 +0100
commit04785f7e33d3ca67c2b3f2e1ed34e3dc20d8bdc2 (patch)
tree5a7a5ffd74681217445b14751ba5f71bda8e8d5f /src/libcore
parent5d07d73ffbf0d2f4bc316ab0c7c2b1ea6988fc5d (diff)
parent6443873821d229c4e3f2d55a08f4739c9992fb17 (diff)
downloadrust-04785f7e33d3ca67c2b3f2e1ed34e3dc20d8bdc2.tar.gz
rust-04785f7e33d3ca67c2b3f2e1ed34e3dc20d8bdc2.zip
Rollup merge of #45919 - lukaramu:patch-1, r=kennytm
Fix broken link markup in Hasher::finish docs

Just a quick fix: there were apostrophes when there needed to be backticks.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/hash/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/hash/mod.rs b/src/libcore/hash/mod.rs
index b3c11ed1b5a..15545a04b64 100644
--- a/src/libcore/hash/mod.rs
+++ b/src/libcore/hash/mod.rs
@@ -259,7 +259,7 @@ pub trait Hasher {
     /// println!("Hash is {:x}!", hasher.finish());
     /// ```
     ///
-    /// ['write']: #tymethod.write
+    /// [`write`]: #tymethod.write
     #[stable(feature = "rust1", since = "1.0.0")]
     fn finish(&self) -> u64;