From 61e7226299fbfb13f34ba27e45042019a92b050d Mon Sep 17 00:00:00 2001 From: kevincatty Date: Wed, 12 Mar 2025 16:51:55 +0800 Subject: [PATCH] chore: add missing backquotes Signed-off-by: kevincatty --- bitcoin/src/address/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/address/mod.rs b/bitcoin/src/address/mod.rs index 72a3ec7db..a4588617a 100644 --- a/bitcoin/src/address/mod.rs +++ b/bitcoin/src/address/mod.rs @@ -938,7 +938,7 @@ impl fmt::Debug for Address { /// Address can be parsed only with `NetworkUnchecked`. /// /// Only SegWit bech32 addresses prefixed with `bc`, `bcrt` or `tb` and legacy base58 addresses -/// prefixed with `1`, `2, `3`, `m` or `n` are supported. +/// prefixed with `1`, `2`, `3`, `m` or `n` are supported. /// /// # Errors ///