summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/src/parse/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp-ffi/src/parse/mod.rs')
-rw-r--r--openpgp-ffi/src/parse/mod.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/openpgp-ffi/src/parse/mod.rs b/openpgp-ffi/src/parse/mod.rs
index dea6d0e4..7372fd72 100644
--- a/openpgp-ffi/src/parse/mod.rs
+++ b/openpgp-ffi/src/parse/mod.rs
@@ -3,8 +3,8 @@
//! Wraps [`sequoia-openpgp::parse::PacketParser`] and [related
//! functionality].
//!
-//! [`sequoia-openpgp::parse::PacketParser`]: ../../../sequoia_openpgp/parse/struct.PacketParser.html
-//! [related functionality]: ../../../sequoia_openpgp/parse/index.html
+//! [`sequoia-openpgp::parse::PacketParser`]: super::super::super::sequoia_openpgp::parse::PacketParser
+//! [related functionality]: super::super::super::sequoia_openpgp::parse
use std::mem::forget;
use std::ptr;
@@ -140,8 +140,8 @@ pub extern "C" fn pgp_packet_parser_recursion_depth
/// recurse into the container, but skips any packets it contains.
/// To recurse into the container, use the [`recurse()`] method.
///
-/// [`PacketParsererBuilder`]: ../../../sequoia_openpgp/parse/struct.PacketParserBuilder.html
-/// [`recurse()`]: fn.pgp_packet_parser_recurse.html
+/// [`PacketParsererBuilder`]: super::super::super::sequoia_openpgp::parse::PacketParserBuilder
+/// [`recurse()`]: pgp_packet_parser_recurse()
///
/// The return value is a tuple containing:
///
@@ -234,7 +234,7 @@ pub extern "C" fn pgp_packet_parser_next<'a>
/// because we always visit interior nodes, we can't recurse more
/// than one level at a time.
///
-/// [`next()`]: fn.pgp_packet_parser_next.html
+/// [`next()`]: pgp_packet_parser_next()
///
/// The items of the tuple are returned in out-parameters. If you do
/// not wish to receive the value, pass `NULL` as the parameter.