From: Valentine Wallace Date: Thu, 15 Aug 2024 21:57:51 +0000 (-0400) Subject: Tweak phrasing in Blinded{Message,Payment}Path::advance_path_by_one docs. X-Git-Tag: v0.0.124-beta~10^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=8eb334421646642b83d63df4d0f78504eab624a4;p=rust-lightning Tweak phrasing in Blinded{Message,Payment}Path::advance_path_by_one docs. --- diff --git a/lightning/src/blinded_path/message.rs b/lightning/src/blinded_path/message.rs index cbb4a8bbf..acc4ac388 100644 --- a/lightning/src/blinded_path/message.rs +++ b/lightning/src/blinded_path/message.rs @@ -345,7 +345,7 @@ pub(super) fn blinded_hops( utils::construct_blinded_hops(secp_ctx, pks, tlvs, session_priv) } -/// Advance the blinded onion message path by one hop, so make the second hop into the new +/// Advance the blinded onion message path by one hop, making the second hop into the new /// introduction node. /// /// Will only modify `path` when returning `Ok`. diff --git a/lightning/src/blinded_path/payment.rs b/lightning/src/blinded_path/payment.rs index f9615e715..56fb87d30 100644 --- a/lightning/src/blinded_path/payment.rs +++ b/lightning/src/blinded_path/payment.rs @@ -383,7 +383,7 @@ pub(super) fn blinded_hops( utils::construct_blinded_hops(secp_ctx, pks, tlvs, session_priv) } -/// Advance the blinded onion payment path by one hop, so make the second hop into the new +/// Advance the blinded onion payment path by one hop, making the second hop into the new /// introduction node. /// /// Will only modify `path` when returning `Ok`.