summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md5
-rw-r--r--openpgp-ffi/src/lib.rs7
-rw-r--r--openpgp/src/cert/amalgamation.rs4
3 files changed, 4 insertions, 12 deletions
diff --git a/README.md b/README.md
index 746a02dc..2e7e6eb6 100644
--- a/README.md
+++ b/README.md
@@ -20,10 +20,7 @@ The [openpgp](./openpgp) crate tries hard to avoid dictating how
OpenPGP should
be used. This doesn't mean that we don't have opinions about how
OpenPGP should be used in a number of common scenarios (for instance,
-message validation). But, in this crate, we refrain from expressing
-those opinions; we expose an opinionated, high-level interface in the
-sequoia-core and related crates. In our opinion, you should generally
-use those crates instead of this one.
+message validation).
High-level API
--------------
diff --git a/openpgp-ffi/src/lib.rs b/openpgp-ffi/src/lib.rs
index 3f8f5e77..8a49e45b 100644
--- a/openpgp-ffi/src/lib.rs
+++ b/openpgp-ffi/src/lib.rs
@@ -26,17 +26,12 @@
//! We also try hard to avoid dictating how OpenPGP should be used.
//! This doesn't mean that we don't have opinions about how OpenPGP
//! should be used in a number of common scenarios (for instance,
-//! message validation). But, in this crate, we refrain from
-//! expressing those opinions; we expose an opinionated, high-level
-//! interface in the [sequoia-core] and related crates. In our
-//! opinion, you should generally use those crates instead of this
-//! one.
+//! message validation).
//!
//! [RFC 4880]: https://tools.ietf.org/html/rfc4880
//! [RFC 6637]: https://tools.ietf.org/html/rfc6637
//! [RFC 4880bis]: https://tools.ietf.org/html/draft-ietf-openpgp-rfc4880bis-05
//! [unhashed signature subpackets]: https://tools.ietf.org/html/rfc4880#section-5.2.3.2
-//! [sequoia-core]: super::sequoia_core
//!
//!
//! # Dear User,
diff --git a/openpgp/src/cert/amalgamation.rs b/openpgp/src/cert/amalgamation.rs
index 9d01d86f..620980c4 100644
--- a/openpgp/src/cert/amalgamation.rs
+++ b/openpgp/src/cert/amalgamation.rs
@@ -1306,7 +1306,7 @@ impl<'a> ValidUserIDAmalgamation<'a> {
/// [`ValidUserIDAmalgamation::attested_certifications`] to
/// iterate over all attested certifications.
///
- /// [`ValidUserIDAmalgamation::attested_certifications`]: ValidUserIDAmalgamation::attested_certifications()
+ /// [`ValidUserIDAmalgamation::attested_certifications`]: ValidUserIDAmalgamation#method.attested_certifications()
// The explicit link works around a bug in rustdoc.
pub fn attestation_key_signatures(&'a self)
-> impl Iterator<Item=&'a Signature> + Send + Sync
@@ -1477,7 +1477,7 @@ impl<'a> ValidUserAttributeAmalgamation<'a> {
/// [`ValidUserAttributeAmalgamation::attested_certifications`] to
/// iterate over all attested certifications.
///
- /// [`ValidUserAttributeAmalgamation::attested_certifications`]: ValidUserAttributeAmalgamation::attested_certifications()
+ /// [`ValidUserAttributeAmalgamation::attested_certifications`]: ValidUserAttributeAmalgamation#method.attested_certifications()
// The explicit link works around a bug in rustdoc.
pub fn attestation_key_signatures(&'a self)
-> impl Iterator<Item=&'a Signature> + Send + Sync