summaryrefslogtreecommitdiffstats
path: root/openpgp/examples/encrypt-for.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/examples/encrypt-for.rs')
-rw-r--r--openpgp/examples/encrypt-for.rs4
1 files changed, 2 insertions, 2 deletions
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");