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