Skip to content

Commit c66185e

Browse files
committed
fix Minor doc changes
1 parent e4dd8be commit c66185e

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

lightning/src/ln/interactivetxs.rs

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -532,17 +532,15 @@ struct NegotiationContext {
532532
/// Optional intended/expected funding input, used during splicing.
533533
/// The funding input is shared, it is usually co-owned by both peers.
534534
/// - For the initiator:
535-
/// The intended previous funding input. This will be added alongside to the
536-
/// provided inputs.
537-
/// The values are the output value and the holder's part of the shared input.
535+
/// The intended previous funding input. This will be added alongside
536+
/// the provided inputs.
538537
/// - For the acceptor:
539538
/// The expected previous funding input. It should be added by the initiator node.
540-
/// The values are the output value and the holder's part of the shared input.
541539
shared_funding_input: Option<SharedOwnedInput>,
542-
/// The intended/extended funding output, potentially co-owned by both peers (shared).
540+
/// The intended/expected funding output, potentially co-owned by both peers (shared).
543541
/// - For the initiator:
544-
/// The output intended to be the new funding output. This will be added alonside to the
545-
/// provided outputs.
542+
/// The output intended to be the new funding output. This will be added alongside
543+
/// the provided outputs.
546544
/// - For the acceptor:
547545
/// The output expected as new funding output. It should be added by the initiator node.
548546
shared_funding_output: SharedOwnedOutput,
@@ -1402,9 +1400,7 @@ impl SharedOwnedOutput {
14021400
}
14031401
}
14041402

1405-
/// A transaction output, differentiated by ownership:
1406-
/// - exclusive by the adder, or
1407-
/// - shared
1403+
/// A transaction output, differentiated by ownership: exclusive by the adder or shared.
14081404
#[derive(Clone, Debug, Eq, PartialEq)]
14091405
enum OutputOwned {
14101406
/// Belongs to a single party -- controlled exclusively and fully belonging to a single party

0 commit comments

Comments
 (0)