Merge rust-bitcoin/rust-bitcoin#3923: docs: fix fee rate serde module documentation

34bde36712 docs: fix fee rate serde module documentation (jrakibi)

Pull request description:

  Update `fee_rate/serde.rs` documentation to correctly reference fee rates instead of amount

ACKs for top commit:
  tcharding:
    ACK 34bde36712
  apoelstra:
    ACK 34bde3671212f17082db9ef862e26825602fc6a6; successfully ran local tests

Tree-SHA512: 6fba6ffe4e6c7bdb548967098596b2e7f34d0980710e4f3221b68fe20346a3c1a15d5f9c2a156fc01c8d9341402e61466618520aeb8bcf94a3f818e52828eb8f
This commit is contained in:
merge-script 2025-01-20 16:04:57 +00:00
commit 274205e147
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 3 additions and 3 deletions

View File

@ -5,10 +5,10 @@
#![allow(clippy::trivially_copy_pass_by_ref)] #![allow(clippy::trivially_copy_pass_by_ref)]
#![allow(clippy::missing_errors_doc)] #![allow(clippy::missing_errors_doc)]
//! This module adds serde serialization and deserialization support for amounts. //! This module adds serde serialization and deserialization support for fee rates.
//! //!
//! Since there is not a default way to serialize and deserialize Amounts, multiple //! Since there is not a default way to serialize and deserialize fee rates, multiple
//! ways are supported and it's up to the user to decide which serialiation to use. //! ways are supported and it's up to the user to decide which serialization to use.
//! //!
//! The provided modules can be used as follows: //! The provided modules can be used as follows:
//! //!