Skip to content

Commit ec5eb94

Browse files
committed
Remove backticks for bip names
Bips don't need code ticks (by convention). Also the ticks do not match up with the link so in HTML they are not links.
1 parent 738a7f4 commit ec5eb94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/primitives/segwit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
//! Segregated Witness functionality - useful for enforcing parts of [`BIP-173`] and [`BIP-350`].
3+
//! Segregated Witness functionality - useful for enforcing parts of [BIP-173] and [BIP-350].
44
//!
55
//! [BIP-173]: <https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki>
66
//! [BIP-350]: <https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki>

src/segwit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ pub fn decode(s: &str) -> Result<(Hrp, Fe32, Vec<u8>), DecodeError> {
8181
///
8282
/// Does validity checks on the `witness_version` and length checks on the `witness_program`.
8383
///
84-
/// As specified by [`BIP-350`] we use the [`Bech32m`] checksum algorithm for witness versions 1 and
85-
/// above, and for witness version 0 we use the original ([`BIP-173`]) [`Bech32`] checksum
84+
/// As specified by [BIP-350] we use the [`Bech32m`] checksum algorithm for witness versions 1 and
85+
/// above, and for witness version 0 we use the original ([BIP-173]) [`Bech32`] checksum
8686
/// algorithm.
8787
///
8888
/// See also [`encode_v0`] or [`encode_v1`].

0 commit comments

Comments
 (0)