Use capital B for Bitcoin in rustdoc

As we do in another part of this file use capital 'B' for Bitcoin.
This commit is contained in:
Tobin C. Harding 2023-10-31 08:37:11 +11:00
parent bcfabc3556
commit d6298fe711
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -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 }
}