Skip to content

Commit 172e36b

Browse files
committed
clippy: fix indentation in documentation
We had several accidental list-item continuation in our docs. Add newlines to break them up.
1 parent 4ab1b77 commit 172e36b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

examples/pset_blind_coinjoin.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
//! 6. A signs it's input
99
//! 7. A finalizes the pset
1010
//! 8. A extracts and broadcasts the transaction
11+
//!
1112
//! During the entire interaction, the output blinding factors for A and B are not
1213
//! shared with each other.
1314
extern crate bitcoin;

src/opcodes.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,10 @@ pub mod all {
459459
pub const OP_INSPECTINPUTVALUE: All = All {code: 0xc9};
460460
/// Pop a CScriptNum input index idx and push the following depending the type of scriptPubkey:
461461
/// - If the scriptPubKey is not a native segwit program, push a single sha256
462-
/// hash of the scriptPubKey on stack top. Next, push a CScriptNum(-1) to
463-
/// indicate a non-native segwit scriptPubKey.
462+
/// hash of the scriptPubKey on stack top. Next, push a CScriptNum(-1) to
463+
/// indicate a non-native segwit scriptPubKey.
464464
/// - If the scriptPubKey is a native segwit program, push the witness program(2-40)
465-
/// followed by a push for segwit version(0-1).
465+
/// followed by a push for segwit version(0-1).
466466
pub const OP_INSPECTINPUTSCRIPTPUBKEY: All = All {code: 0xca};
467467
/// Pop a CScriptNum input index idx and push the nSequence(4) as little-endian number.
468468
pub const OP_INSPECTINPUTSEQUENCE: All = All {code: 0xcb};
@@ -544,6 +544,7 @@ pub mod all {
544544
/// 1) a 32 byte big endian, unsigned scalar k.
545545
/// 2) Compressed EC point P, and
546546
/// 3) compressed EC point Q.
547+
///
547548
/// Abort if P, Q is invalid or k is not 32 bytes and outside of secp256k1 curve order.
548549
/// Abort if Q != k*P.
549550
pub const OP_ECMULSCALARVERIFY: All = All {code: 0xe3};

src/schnorr.rs

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ impl TapTweak for UntweakedKeypair {
116116
/// * p is the internal private key
117117
/// * H is the hash function
118118
/// * c is the commitment data
119+
///
119120
/// The public key is generated from a private key by multiplying with generator point, Q = qG.
120121
///
121122
/// # Returns

src/taproot.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ impl ControlBlock {
621621
///
622622
/// # Errors:
623623
/// - If the control block size is not of the form 33 + 32m where
624-
/// 0 <= m <= 128, InvalidControlBlock is returned
624+
/// 0 <= m <= 128, InvalidControlBlock is returned
625625
pub fn from_slice(sl: &[u8]) -> Result<ControlBlock, TaprootError> {
626626
if sl.len() < TAPROOT_CONTROL_BASE_SIZE
627627
|| (sl.len() - TAPROOT_CONTROL_BASE_SIZE) % TAPROOT_CONTROL_NODE_SIZE != 0

0 commit comments

Comments
 (0)