From c4ff2baa5a7c841ecdfe0e8a92b0a1a664f203ae Mon Sep 17 00:00:00 2001 From: Jamil Lambert Date: Thu, 17 Apr 2025 18:02:35 +0100 Subject: [PATCH] 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. --- bitcoin/src/address/mod.rs | 2 +- bitcoin/src/blockdata/witness.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitcoin/src/address/mod.rs b/bitcoin/src/address/mod.rs index 1dde641fb..ebaf248ac 100644 --- a/bitcoin/src/address/mod.rs +++ b/bitcoin/src/address/mod.rs @@ -90,7 +90,7 @@ pub enum AddressType { P2wpkh, /// Pay to witness script hash. P2wsh, - /// Pay to taproot. + /// Pay to Taproot. P2tr, /// Pay to anchor. P2a, diff --git a/bitcoin/src/blockdata/witness.rs b/bitcoin/src/blockdata/witness.rs index d4793fbbe..233eff3ee 100644 --- a/bitcoin/src/blockdata/witness.rs +++ b/bitcoin/src/blockdata/witness.rs @@ -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 /// 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`]. /// @@ -241,9 +241,9 @@ enum 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 /// required for the program to not crash. ///