aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/hash.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/src/hash.rs b/openssl/src/hash.rs
index 1d2089ef..47d6dc7a 100644
--- a/openssl/src/hash.rs
+++ b/openssl/src/hash.rs
@@ -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};