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