Skip to content

Commit 2dc47ea

Browse files
committed
f links and ticks
1 parent 798deca commit 2dc47ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lightning/src/ln/channelmanager.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1166,13 +1166,13 @@ pub enum PaymentSendFailure {
11661166
/// in over-/re-payment.
11671167
///
11681168
/// The results here are ordered the same as the paths in the route object which was passed to
1169-
/// send_payment, and any Errs which are not APIError::MonitorUpdateInProgress can be safely
1170-
/// retried via [`ChannelManager::retry_payment`].
1169+
/// send_payment, and any `Err`s which are not [`APIError::MonitorUpdateInProgress`] can be
1170+
/// safely retried via [`ChannelManager::retry_payment`].
11711171
///
1172-
/// Any entries which contain Err(APIError::MonitorUpdateInprogress) or Ok(()) MUST NOT be
1172+
/// Any entries which contain `Err(APIError::MonitorUpdateInprogress)` or `Ok(())` MUST NOT be
11731173
/// retried as they will result in over-/re-payment. These HTLCs all either successfully sent
1174-
/// (in the case of Ok(())) or will send once a [`MonitorEvent::Completed`] is provided for the
1175-
/// next-hop channel with the latest update_id.
1174+
/// (in the case of `Ok(())`) or will send once a [`MonitorEvent::Completed`] is provided for
1175+
/// the next-hop channel with the latest update_id.
11761176
PartialFailure {
11771177
/// The errors themselves, in the same order as the route hops.
11781178
results: Vec<Result<(), APIError>>,

0 commit comments

Comments
 (0)