From: Lukas H Date: Fri, 10 Nov 2017 19:58:03 +0000 (+0100) Subject: Fix broken link markup in Hasher::finish docs X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=6443873821d229c4e3f2d55a08f4739c9992fb17;p=rust.git Fix broken link markup in Hasher::finish docs There were apostrophes when there needed to be backticks. --- 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;