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.
This commit is contained in:
Guillaume Gomez 2017-11-11 13:38:08 +01:00 committed by GitHub
commit 04785f7e33

View File

@ -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;