Skip to content

Commit f256f62

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 182cd8b commit f256f62

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
@@ -85,8 +85,8 @@ pub fn decode(s: &str) -> Result<(Hrp, Fe32, Vec<u8>), DecodeError> {
8585
/// Does validity checks on the `witness_version`, length checks on the `witness_program`, and
8686
/// checks the total encoded string length.
8787
///
88-
/// As specified by [`BIP-350`] we use the [`Bech32m`] checksum algorithm for witness versions 1 and
89-
/// above, and for witness version 0 we use the original ([`BIP-173`]) [`Bech32`] checksum
88+
/// As specified by [BIP-350] we use the [`Bech32m`] checksum algorithm for witness versions 1 and
89+
/// above, and for witness version 0 we use the original ([BIP-173]) [`Bech32`] checksum
9090
/// algorithm.
9191
///
9292
/// See also [`encode_v0`] or [`encode_v1`].

0 commit comments

Comments
 (0)