This commit is contained in:
Steven Fackler 2017-01-01 10:07:32 -08:00
parent 85a6e8acca
commit cdabc1b3e3
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ use self::State::*;
///
/// # Examples
///
/// Calculate a hash in one go.
/// Calculate a hash in one go:
///
/// ```
/// use openssl::hash::{hash, MessageDigest};
@ -71,7 +71,7 @@ use self::State::*;
/// assert_eq!(res, spec);
/// ```
///
/// Use the `Write` trait to supply the input in chunks.
/// Supply the input in chunks:
///
/// ```
/// use openssl::hash::{Hasher, MessageDigest};