]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Tweak phrasing in Blinded{Message,Payment}Path::advance_path_by_one docs.
authorValentine Wallace <vwallace@protonmail.com>
Thu, 15 Aug 2024 21:57:51 +0000 (17:57 -0400)
committerValentine Wallace <vwallace@protonmail.com>
Fri, 16 Aug 2024 14:28:52 +0000 (10:28 -0400)
lightning/src/blinded_path/message.rs
lightning/src/blinded_path/payment.rs

index cbb4a8bbf9756333fb034c53837f68a81f7a7c43..acc4ac3886617aac42d5940d39aca7b1dd12da34 100644 (file)
@@ -345,7 +345,7 @@ pub(super) fn blinded_hops<T: secp256k1::Signing + secp256k1::Verification>(
        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`.
index f9615e7157fb03fcabbbfb37841029f6f21b9140..56fb87d300b5809f1cee38f696951ceebdd865a8 100644 (file)
@@ -383,7 +383,7 @@ pub(super) fn blinded_hops<T: secp256k1::Signing + secp256k1::Verification>(
        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`.