From c2f872800dc5865e70e6052dad48a56684988edd Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 20 Jun 2023 13:46:41 +0200 Subject: 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. --- openpgp/src/crypto/backend/nettle/asymmetric.rs | 6 +++--- 1 file 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}; -- cgit v1.2.3