From d066a863bf3dc522da591cc1e0e27392f2e69dc9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 12 Dec 2024 12:21:28 +1100 Subject: [PATCH] Use backticks on amount types --- bitcoin/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index 2c4c76ae1..a885c54b1 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -199,7 +199,7 @@ mod prelude { pub mod amount { //! Bitcoin amounts. //! - //! This module mainly introduces the [Amount] and [SignedAmount] types. + //! This module mainly introduces the [`Amount`] and [`SignedAmount`] types. //! We refer to the documentation on the types for more information. use crate::consensus::{encode, Decodable, Encodable};