From a4fc1c78f8785dc233bbd2b0fe5c3295a76baac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20So=C5=82tysiak?= Date: Wed, 16 Oct 2024 12:18:36 +0200 Subject: [PATCH] typo in bip329 link --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e69312..6892bb5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ -A library for working with [BIP329 labels](https://github.com/bitcoin/bips/blob/master/bip-00329.mediawiki). +A library for working with [BIP329 labels](https://github.com/bitcoin/bips/blob/master/bip-0329.mediawiki). - The main data structure is the [`Labels`](https://docs.rs/bip329/latest/bip329/struct.Labels.html) struct, which is a list of [`Label`](https://docs.rs/bip329/latest/bip329/enum.Label.html) structs. - The [`Label`](https://docs.rs/bip329/latest/bip329/enum.Label.html) enum containing all the different types of labels. diff --git a/src/lib.rs b/src/lib.rs index 43460c0..4488a01 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -//! A library for working with [BIP329 labels](https://github.com/bitcoin/bips/blob/master/bip-00329.mediawiki). +//! A library for working with [BIP329 labels](https://github.com/bitcoin/bips/blob/master/bip-0329.mediawiki). //! //! - The main data structure is the [`Labels`](crate::Labels) struct, which is a list of [`Label`](crate::Label) structs. //! - The [`Label`](crate::Label) enum containing all the different types of labels.