summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/serialize/stream.rs')
-rw-r--r--openpgp/src/serialize/stream.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/openpgp/src/serialize/stream.rs b/openpgp/src/serialize/stream.rs
index 9d95610d..4b315648 100644
--- a/openpgp/src/serialize/stream.rs
+++ b/openpgp/src/serialize/stream.rs
@@ -2045,7 +2045,7 @@ pub struct Encryptor<'a> {
}
impl<'a> Encryptor<'a> {
- /// Creates a new encryptor for the given recipient.
+ /// Creates a new encryptor for the given recipients.
///
/// To add more recipients, use [`Encryptor::add_recipient`]. To
/// add a password, use [`Encryptor::add_password`]. To change
@@ -2139,7 +2139,7 @@ impl<'a> Encryptor<'a> {
}
}
- /// Creates a new encryptor for the given password.
+ /// Creates a new encryptor for the given passwords.
///
/// To add more passwords, use [`Encryptor::add_password`]. To
/// add an recipient, use [`Encryptor::add_recipient`]. To change
@@ -2186,7 +2186,7 @@ impl<'a> Encryptor<'a> {
}
}
- /// Adds a recipient.
+ /// Adds recipients.
///
/// The resulting message can be encrypted by any recipient and
/// with any password.
@@ -2270,7 +2270,7 @@ impl<'a> Encryptor<'a> {
self
}
- /// Adds a password to encrypt with.
+ /// Adds passwords to encrypt with.
///
/// The resulting message can be encrypted with any password and
/// by any recipient.