From 96be444f05ce80f14a47a515cca813ac0583164d Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 14 Aug 2018 14:32:27 +0200 Subject: openpgp: Typos. --- openpgp/examples/encrypt-for.rs | 4 ++-- openpgp/examples/sign-detached.rs | 4 ++-- openpgp/examples/sign.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'openpgp/examples') diff --git a/openpgp/examples/encrypt-for.rs b/openpgp/examples/encrypt-for.rs index f8a04c3b..de4cad9b 100644 --- a/openpgp/examples/encrypt-for.rs +++ b/openpgp/examples/encrypt-for.rs @@ -38,8 +38,8 @@ fn main() { let recipients: Vec<&openpgp::TPK> = tpks.iter().collect(); // Compose a writer stack corresponding to the output format and - // packet structure we want. First, we want the output to be as - // armored. + // packet structure we want. First, we want the output to be + // ASCII armored. let sink = armor::Writer::new(io::stdout(), armor::Kind::Message, &[][..]) .expect("Failed to create an armored writer"); diff --git a/openpgp/examples/sign-detached.rs b/openpgp/examples/sign-detached.rs index bb9985ec..64a1002f 100644 --- a/openpgp/examples/sign-detached.rs +++ b/openpgp/examples/sign-detached.rs @@ -26,8 +26,8 @@ fn main() { }).collect(); // Compose a writer stack corresponding to the output format and - // packet structure we want. First, we want the output to be as - // armored. + // packet structure we want. First, we want the output to be + // ASCII armored. let sink = armor::Writer::new(io::stdout(), armor::Kind::Signature, &[][..]) .expect("Failed to create armored writer."); diff --git a/openpgp/examples/sign.rs b/openpgp/examples/sign.rs index 2caeefb0..d9c6ec83 100644 --- a/openpgp/examples/sign.rs +++ b/openpgp/examples/sign.rs @@ -27,8 +27,8 @@ fn main() { }).collect(); // Compose a writer stack corresponding to the output format and - // packet structure we want. First, we want the output to be as - // armored. + // packet structure we want. First, we want the output to be + // ASCII armored. let sink = armor::Writer::new(io::stdout(), armor::Kind::Message, &[][..]) .expect("Failed to create an armored writer."); -- cgit v1.2.3