Capitalize Taproot in rustdocs

Some recent additions to the rustdocs used a lowercase t in taproot.

Capitalize all cases of Taproot in rustdocs to be consistent.
This commit is contained in:
Jamil Lambert 2025-04-17 18:02:35 +01:00
parent 30c1933d16
commit c4ff2baa5a
No known key found for this signature in database
GPG Key ID: 7F574053F8F17A64
2 changed files with 5 additions and 5 deletions

View File

@ -90,7 +90,7 @@ pub enum AddressType {
P2wpkh, P2wpkh,
/// Pay to witness script hash. /// Pay to witness script hash.
P2wsh, P2wsh,
/// Pay to taproot. /// Pay to Taproot.
P2tr, P2tr,
/// Pay to anchor. /// Pay to anchor.
P2a, P2a,

View File

@ -183,7 +183,7 @@ crate::internal_macros::define_extension_trait! {
} }
} }
/// Get the taproot control block following BIP341 rules. /// Get the Taproot control block following BIP341 rules.
/// ///
/// This does not guarantee that this represents a P2TR [`Witness`]. It /// This does not guarantee that this represents a P2TR [`Witness`]. It
/// merely gets the last or second to last element depending on the first /// merely gets the last or second to last element depending on the first
@ -197,7 +197,7 @@ crate::internal_macros::define_extension_trait! {
} }
} }
/// Get the taproot annex following BIP341 rules. /// Get the Taproot annex following BIP341 rules.
/// ///
/// This does not guarantee that this represents a P2TR [`Witness`]. /// This does not guarantee that this represents a P2TR [`Witness`].
/// ///
@ -241,9 +241,9 @@ enum P2TrSpend<'a> {
} }
impl<'a> P2TrSpend<'a> { impl<'a> P2TrSpend<'a> {
/// Parses `Witness` to determine what kind of taproot spend this is. /// Parses `Witness` to determine what kind of Taproot spend this is.
/// ///
/// Note: this assumes `witness` is a taproot spend. The function cannot figure it out for sure /// Note: this assumes `witness` is a Taproot spend. The function cannot figure it out for sure
/// (without knowing the output), so it doesn't attempt to check anything other than what is /// (without knowing the output), so it doesn't attempt to check anything other than what is
/// required for the program to not crash. /// required for the program to not crash.
/// ///