summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/builder.rs
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2020-05-06 14:38:33 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2020-06-01 15:30:15 +0200
commitebb719dcc6c0a719cab77f4fb7e296e8efe85f13 (patch)
tree959664d259f3d57396086c8c78907297130e983e /openpgp/src/cert/builder.rs
parent09f30c446541acee77f18d365cbdbb970dd82543 (diff)
openpgp: Add doctests to types module.
- Fixes #475.
Diffstat (limited to 'openpgp/src/cert/builder.rs')
-rw-r--r--openpgp/src/cert/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/cert/builder.rs b/openpgp/src/cert/builder.rs
index 0c58548f..751abb55 100644
--- a/openpgp/src/cert/builder.rs
+++ b/openpgp/src/cert/builder.rs
@@ -398,7 +398,7 @@ impl CertBuilder {
/// assert_eq!(userids[1].userid(),
/// &UserID::from("Alice Lovelace <alice@lovelace.name>"));
///
- ///
+ ///
/// assert_eq!(userids[0].binding_signature().primary_userid().unwrap_or(false), true);
/// assert_eq!(userids[1].binding_signature().primary_userid().unwrap_or(false), false);
/// # Ok(())