Skip to content

Commit 3ff4f14

Browse files
committed
Fix docs links
Fix all the docs build warnings for broken links.
1 parent 432c49b commit 3ff4f14

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/descriptor/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -667,9 +667,9 @@ impl Descriptor<DescriptorPublicKey> {
667667

668668
/// Derive a [`Descriptor`] with a concrete [`bitcoin::PublicKey`] at a given index
669669
/// Removes all extended pubkeys and wildcards from the descriptor and only leaves
670-
/// concrete [`bitcoin::PublicKey`]. All [`crate::XOnlyKey`]s are converted to [`bitcoin::PublicKey`]
671-
/// by adding a default(0x02) y-coordinate. For [`crate::descriptor::Tr`] descriptor,
672-
/// spend info is also cached.
670+
/// concrete [`bitcoin::PublicKey`]. All [`bitcoin::XOnlyPublicKey`]s are converted
671+
/// to [`bitcoin::PublicKey`]s by adding a default(0x02) y-coordinate. For [`Tr`]
672+
/// descriptor, spend info is also cached.
673673
///
674674
/// # Examples
675675
///

src/interpreter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ impl<'txin> Interpreter<'txin> {
217217
}
218218

219219
/// Verify a signature for a given transaction and prevout information
220-
/// This is a low level API, [`Interpreter::iter`] or [`Interpreter::iter_assume_sig`]
220+
/// This is a low level API, [`Interpreter::iter`] or [`Interpreter::iter_assume_sigs`]
221221
/// should satisfy most use-cases.
222222
/// Returns false if
223223
/// - the signature verification fails

src/psbt/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,8 +559,10 @@ pub trait PsbtExt {
559559
/// # Arguments:
560560
///
561561
/// * `idx`: The input index of psbt to sign
562-
/// * `cache`: The [`sighash::SighashCache`] for used to cache/read previously cached computations
562+
/// * `cache`: The [`SighashCache`] for used to cache/read previously cached computations
563563
/// * `tapleaf_hash`: If the output is taproot, compute the sighash for this particular leaf.
564+
///
565+
/// [`SighashCache`]: bitcoin::util::sighash::SighashCache
564566
fn sighash_msg<T: Deref<Target = bitcoin::Transaction>>(
565567
&self,
566568
idx: usize,

0 commit comments

Comments
 (0)