summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-06-20 13:46:41 +0200
committerJustus Winter <justus@sequoia-pgp.org>2023-06-20 13:46:41 +0200
commitc2f872800dc5865e70e6052dad48a56684988edd (patch)
tree1fa04628de77ba65d9dde1b8a5c063c0a8774560
parent2996c5219345854ca8682338b205e426771565af (diff)
openpgp: Fix documentation.
- Use absolute pathspecs. My rustdoc version 1.66 reported these as errors. In any case, I think they look nicer this way.
-rw-r--r--openpgp/src/crypto/backend/nettle/asymmetric.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/openpgp/src/crypto/backend/nettle/asymmetric.rs b/openpgp/src/crypto/backend/nettle/asymmetric.rs
index 2e631edd..fd239528 100644
--- a/openpgp/src/crypto/backend/nettle/asymmetric.rs
+++ b/openpgp/src/crypto/backend/nettle/asymmetric.rs
@@ -1,8 +1,8 @@
//! Hold the implementation of [`Signer`] and [`Decryptor`] for [`KeyPair`].
//!
-//! [`Signer`]: super::super::asymmetric::Signer
-//! [`Decryptor`]: super::super::asymmetric::Decryptor
-//! [`KeyPair`]: super::super::asymmetric::KeyPair
+//! [`Signer`]: crate::crypto::Signer
+//! [`Decryptor`]: crate::crypto::Decryptor
+//! [`KeyPair`]: crate::crypto::KeyPair
use nettle::{curve25519, ecc, ecdh, ecdsa, ed25519, dsa, rsa, random::Yarrow};