summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-04-23 16:14:42 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2021-04-23 16:14:42 +0200
commit48920261cf978c3a029b7b8c32983f9e96093ce8 (patch)
treef7a35f47d947b42505ee914fa5fdacb7bb1cd05c
parent58025f5a0390c137fe972d2940c4bea1941ab055 (diff)
openpgp: Fix typo.nora/typo
-rw-r--r--openpgp/src/crypto/hash.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/hash.rs b/openpgp/src/crypto/hash.rs
index 363d8170..57505f03 100644
--- a/openpgp/src/crypto/hash.rs
+++ b/openpgp/src/crypto/hash.rs
@@ -56,7 +56,7 @@ const DUMP_HASHED_VALUES: Option<&str> = None;
/// Hasher capable of calculating a digest for the input byte stream.
///
/// This provides an abstract interface to the hash functions used in
-/// OpenPGP. `Digest`s can be are created using [`HashAlgorithm::context`].
+/// OpenPGP. `Digest`s can be created using [`HashAlgorithm::context`].
///
/// [`HashAlgorithm::context`]: ../../types/enum.HashAlgorithm.html#method.context
pub trait Digest: DynClone + Write + Send + Sync {