Skip to content

Commit 0382434

Browse files
committed
fix(docs): use correct intra-doc-links
1 parent 18461db commit 0382434

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/wallet/changeset.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ type IndexedTxGraphChangeSet =
127127
/// [merged]: bdk_chain::Merge
128128
/// [`network`]: Self::network
129129
/// [`PersistedWallet`]: crate::PersistedWallet
130-
/// [SQLite]: bdk_chain::rusqlite_impl
130+
/// [SQLite]: crate::rusqlite_impl
131131
/// [`Update`]: crate::Update
132132
/// [`WalletPersister`]: crate::WalletPersister
133133
/// [`Wallet::staged`]: crate::Wallet::staged

src/wallet/error.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ use bitcoin::{absolute, psbt, Amount, BlockHash, Network, OutPoint, Sequence, Tx
2323
use core::fmt;
2424

2525
/// The error type when loading a [`Wallet`] from a [`ChangeSet`].
26+
///
27+
/// [`Wallet`]: crate::wallet::Wallet
28+
/// [`ChangeSet`]: crate::wallet::ChangeSet
2629
#[derive(Debug, PartialEq)]
2730
pub enum LoadError {
2831
/// There was a problem with the passed-in descriptor(s).
@@ -54,6 +57,8 @@ impl fmt::Display for LoadError {
5457
impl core::error::Error for LoadError {}
5558

5659
/// Represents a mismatch with what is loaded and what is expected from [`LoadParams`].
60+
///
61+
/// [`LoadParams`]: crate::wallet::LoadParams
5762
#[derive(Debug, PartialEq)]
5863
pub enum LoadMismatch {
5964
/// Network does not match.

0 commit comments

Comments
 (0)