Skip to content

Commit a4ec6fb

Browse files
committed
ci: fix doclinks
1 parent 8dd5e75 commit a4ec6fb

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

src/confidential/elip151.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//! ELIP151
1515
//!
1616
//! Implementation of the ELIP151 protocol, documented at
17-
//! https://github.com/ElementsProject/ELIPs/blob/main/elip-0151.md
17+
//! <https://github.com/ElementsProject/ELIPs/blob/main/elip-0151.md>
1818
//!
1919
2020
use bitcoin::hashes::{sha256t_hash_newtype, Hash};

src/confidential/slip77.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! SLIP77
1616
//!
1717
//! Implementation of the SLIP77 protocol, documented at
18-
//! https://github.com/satoshilabs/slips/blob/master/slip-0077.md
18+
//! <https://github.com/satoshilabs/slips/blob/master/slip-0077.md>
1919
//!
2020
2121
use std::{borrow, fmt};

src/descriptor/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -870,10 +870,9 @@ impl<Ext: Extension + ParseableExt> Descriptor<DescriptorPublicKey, Ext> {
870870
/// ```
871871
///
872872
/// and is only here really here for backwards compatbility.
873-
/// See [`at_derivation_index`] and `[derived_descriptor`] for more documentation.
873+
/// See [`at_derivation_index`] for more documentation.
874874
///
875875
/// [`at_derivation_index`]: Self::at_derivation_index
876-
/// [`derived_descriptor`]: crate::DerivedDescriptor::derived_descriptor
877876
///
878877
/// # Errors
879878
///

src/extensions/arith.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,8 +915,8 @@ pub enum ArithInner<T: ExtParam> {
915915
Geq(Expr<T>, Expr<T>),
916916
}
917917

918-
/// Wrapper around [`ArithInner`] that ensures that the expression is valid.
919-
/// See [`ArithInner`] for more details.
918+
/// Wrapper around `ArithInner` that ensures that the expression is valid.
919+
/// See `ArithInner` for more details.
920920
///
921921
/// Note that the library allows construction of unchecked [`Expr], but
922922
/// [`Arith`] is always checked.

src/psbt/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ pub trait PsbtExt {
613613

614614
/// Get the sighash message(data to sign) at input index `idx` based on the sighash
615615
/// flag specified in the [`Psbt`] sighash field. If the input sighash flag psbt field is `None`
616-
/// the [`SchnorrSighashType::Default`](elements::sighash::SchnorrSighashType::Default) is chosen
616+
/// the [`SchnorrSighashType::Default`] is chosen
617617
/// for for taproot spends, otherwise [`EcdsaSignatureHashType::All`](elements::EcdsaSighashType::All) is chosen.
618618
/// If the utxo at `idx` is a taproot output, returns a [`PsbtSighashMsg::TapSighash`] variant.
619619
/// If the utxo at `idx` is a pre-taproot output, returns a [`PsbtSighashMsg::EcdsaSighash`] variant.

0 commit comments

Comments
 (0)