From d6298fe7115d23be80d2cbd6cbc4b5519ad0f53e Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 31 Oct 2023 08:37:11 +1100 Subject: [PATCH] Use capital B for Bitcoin in rustdoc As we do in another part of this file use capital 'B' for Bitcoin. --- bitcoin/src/crypto/ecdsa.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/crypto/ecdsa.rs b/bitcoin/src/crypto/ecdsa.rs index 167afcb6..14251fac 100644 --- a/bitcoin/src/crypto/ecdsa.rs +++ b/bitcoin/src/crypto/ecdsa.rs @@ -29,7 +29,7 @@ pub struct Signature { } impl Signature { - /// Constructs an ECDSA bitcoin signature for [`EcdsaSighashType::All`]. + /// Constructs an ECDSA Bitcoin signature for [`EcdsaSighashType::All`]. pub fn sighash_all(sig: secp256k1::ecdsa::Signature) -> Signature { Signature { sig, hash_ty: EcdsaSighashType::All } }