summaryrefslogtreecommitdiffstats
path: root/openpgp/src/armor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/armor.rs')
-rw-r--r--openpgp/src/armor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/armor.rs b/openpgp/src/armor.rs
index eb6bc65f..0f72181d 100644
--- a/openpgp/src/armor.rs
+++ b/openpgp/src/armor.rs
@@ -83,7 +83,7 @@ assert_send_and_sync!(Kind);
#[cfg(test)]
impl Arbitrary for Kind {
- fn arbitrary<G: Gen>(g: &mut G) -> Self {
+ fn arbitrary(g: &mut Gen) -> Self {
use self::Kind::*;
match u8::arbitrary(g) % 5 {
0 => Message,