summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert.rs')
-rw-r--r--openpgp/src/cert.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/openpgp/src/cert.rs b/openpgp/src/cert.rs
index 12348ecf..f7f962ef 100644
--- a/openpgp/src/cert.rs
+++ b/openpgp/src/cert.rs
@@ -626,6 +626,7 @@ pub trait Preferences<'a>: seal::Sealed {
/// for c in cert.userids() {
/// acc.push(c.userid().clone().into());
/// for s in c.self_signatures() { acc.push(s.clone().into()) }
+/// for s in c.attestations() { acc.push(s.clone().into()) }
/// for s in c.certifications() { acc.push(s.clone().into()) }
/// for s in c.self_revocations() { acc.push(s.clone().into()) }
/// for s in c.other_revocations() { acc.push(s.clone().into()) }
@@ -635,6 +636,7 @@ pub trait Preferences<'a>: seal::Sealed {
/// for c in cert.user_attributes() {
/// acc.push(c.user_attribute().clone().into());
/// for s in c.self_signatures() { acc.push(s.clone().into()) }
+/// for s in c.attestations() { acc.push(s.clone().into()) }
/// for s in c.certifications() { acc.push(s.clone().into()) }
/// for s in c.self_revocations() { acc.push(s.clone().into()) }
/// for s in c.other_revocations() { acc.push(s.clone().into()) }