summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2020-11-17 07:35:10 +0100
committerAzul <azul@riseup.net>2020-11-17 07:35:10 +0100
commit0bcdaa26f0e2201add9795b55c587bf384f3183e (patch)
tree83e78a2b744775f43c9b4c653d3dc7212f7b020b
parent6bf28fe92ef8dfd363cb856a3a8702e78b652df9 (diff)
openpgp: minor: fix typos.
-rw-r--r--openpgp/src/crypto/asymmetric.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/openpgp/src/crypto/asymmetric.rs b/openpgp/src/crypto/asymmetric.rs
index fbd94d93..1934f3be 100644
--- a/openpgp/src/crypto/asymmetric.rs
+++ b/openpgp/src/crypto/asymmetric.rs
@@ -27,7 +27,7 @@ use crate::Result;
/// A signer consists of the public key and a way of creating a
/// signature. This crate implements `Signer` for [`KeyPair`], which
/// is a tuple containing the public and unencrypted secret key in
-/// memory. Other crates my provide their own implementations of
+/// memory. Other crates may provide their own implementations of
/// `Signer` to utilize keys stored in various places. Currently, the
/// following implementations exist:
///
@@ -70,8 +70,8 @@ impl Signer for Box<dyn Signer> {
/// A decryptor consists of the public key and a way of decrypting a
/// session key. This crate implements `Decryptor` for [`KeyPair`],
/// which is a tuple containing the public and unencrypted secret key
-/// in memory. Other crates my provide their own implementations of
-/// `Signer` to utilize keys stored in various places. Currently, the
+/// in memory. Other crates may provide their own implementations of
+/// `Decryptor` to utilize keys stored in various places. Currently, the
/// following implementations exist:
///
/// - [`KeyPair`]: In-memory keys.