Skip to content

Commit 4caab75

Browse files
committed
Fix rustdoc broken links in bindings-sys procedure module
The procedure module is now documented in the default (non-unstable) `cargo doc` build, surfacing three unresolved [`Errno`] intra-doc links. Qualify them as [`crate::Errno`] so they resolve from within the submodule.
1 parent 59ddb66 commit 4caab75

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

crates/bindings-sys/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ pub mod procedure {
15621562
///
15631563
/// Once complete, returns `Ok(timestamp)` on success,
15641564
/// enabling further calls that require a pending transaction,
1565-
/// or [`Errno`] otherwise.
1565+
/// or [`crate::Errno`] otherwise.
15661566
///
15671567
/// # Errors
15681568
///
@@ -1578,7 +1578,7 @@ pub mod procedure {
15781578
/// blocking until the transaction has been committed
15791579
/// and subscription queries have been run and broadcast.
15801580
///
1581-
/// Once complete, returns `Ok(())` on success, or an [`Errno`] otherwise.
1581+
/// Once complete, returns `Ok(())` on success, or an [`crate::Errno`] otherwise.
15821582
///
15831583
/// # Errors
15841584
///
@@ -1600,7 +1600,7 @@ pub mod procedure {
16001600
/// Aborts a mutable transaction,
16011601
/// blocking until the transaction has been rolled back.
16021602
///
1603-
/// Once complete, returns `Ok(())` on success, or an [`Errno`] otherwise.
1603+
/// Once complete, returns `Ok(())` on success, or an [`crate::Errno`] otherwise.
16041604
///
16051605
/// # Errors
16061606
///

0 commit comments

Comments
 (0)