Merge rust-bitcoin/rust-bitcoin#1618: Add newline in rustdoc
f0e4e38844
Add newline in rustdoc (Tobin C. Harding) Pull request description: Docs created with the `sha256t_hash_newtype` macro are missing a newline between the doc heading and doc main section. Note that the strings used span multiple lines and therefor the subsequent lines must be aligned with the start of the line (not indented). Fix: #1540 ACKs for top commit: Kixunil: ACKf0e4e38844
apoelstra: ACKf0e4e38844
Tree-SHA512: 240c68864da63688c400498903d5cc345bee224dcd3235df0127dcf391c66ee08c487d31fe59f890009c674574810b689d9a53628d07d8cdd46b79bc0ac3eb2b
This commit is contained in:
commit
732dd038ff
|
@ -50,7 +50,8 @@ const MIDSTATE_TAPSIGHASH: [u8; 32] = [
|
|||
#[rustfmt::skip]
|
||||
sha256t_hash_newtype!(TapLeafHash, TapLeafTag, MIDSTATE_TAPLEAF, 64,
|
||||
doc="Taproot-tagged hash with tag \"TapLeaf\".
|
||||
This is used for computing tapscript script spend hash.", false
|
||||
|
||||
This is used for computing tapscript script spend hash.", false
|
||||
);
|
||||
#[rustfmt::skip]
|
||||
sha256t_hash_newtype!(TapNodeHash, TapBranchTag, MIDSTATE_TAPBRANCH, 64,
|
||||
|
@ -64,7 +65,8 @@ sha256t_hash_newtype!(TapTweakHash, TapTweakTag, MIDSTATE_TAPTWEAK, 64,
|
|||
#[rustfmt::skip]
|
||||
sha256t_hash_newtype!(TapSighashHash, TapSighashTag, MIDSTATE_TAPSIGHASH, 64,
|
||||
doc="Taproot-tagged hash with tag \"TapSighash\".
|
||||
This hash type is used for computing taproot signature hash.", false
|
||||
|
||||
This hash type is used for computing taproot signature hash.", false
|
||||
);
|
||||
|
||||
impl secp256k1::ThirtyTwoByteHash for TapSighashHash {
|
||||
|
|
Loading…
Reference in New Issue