From c3102f04dea27388e830e619a43e8b1130bd2d08 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Sun, 11 May 2025 10:59:17 +1000 Subject: [PATCH] Fix link to BIP-113 Current rustdocs link is not correct. Just remove the brackets because we have a fully labelled link right below. --- primitives/src/locktime/absolute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primitives/src/locktime/absolute.rs b/primitives/src/locktime/absolute.rs index c10d2ff79..1bc5b5a78 100644 --- a/primitives/src/locktime/absolute.rs +++ b/primitives/src/locktime/absolute.rs @@ -187,7 +187,7 @@ impl LockTime { /// If the locktime is set to an MTP `T`, the transaction can be included in a block only if /// the MTP of last recent 11 blocks is greater than `T`. /// - /// It is possible to broadcast the transaction once the MTP is greater than `T`.[see BIP-113] + /// It is possible to broadcast the transaction once the MTP is greater than `T`. See BIP-113. /// /// [BIP-113 Median time-past as endpoint for lock-time calculations](https://github.com/bitcoin/bips/blob/master/bip-0113.mediawiki) ///