Skip to content

Commit 2236852

Browse files
committed
f - rephrase docs
1 parent 34042b9 commit 2236852

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,17 +203,17 @@ use crate::ln::script::ShutdownScript;
203203
/// The components of a splice's funding transaction that are contributed by one party.
204204
#[cfg(splicing)]
205205
pub enum SpliceContribution {
206-
/// When only inputs -- except for a possible change output -- are contributed to the splice.
206+
/// When funds are added to a channel.
207207
SpliceIn {
208208
/// The amount to contribute to the splice.
209209
value: Amount,
210210

211-
/// The inputs used to meet the contributed amount. Any excess amount will be sent to a
212-
/// change output.
211+
/// The inputs used to include in the splice's funding transaction used to meet the
212+
/// contributed amount. Any excess amount will be sent to a change output.
213213
inputs: Vec<FundingTxInput>,
214214

215-
/// An optional change output script. This will be used if needed or, if not set, generated
216-
/// using `SignerProvider::get_destination_script`.
215+
/// An optional change output script. This will be used if needed or, when not set,
216+
/// generated using `SignerProvider::get_destination_script`.
217217
change_script: Option<ScriptBuf>,
218218
},
219219
}

0 commit comments

Comments
 (0)