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