From afe9ddd5e63d063ec07a4cc4f47c72d0cb909c74 Mon Sep 17 00:00:00 2001 From: "Jamil Lambert, PhD" Date: Mon, 14 Apr 2025 13:58:04 +0100 Subject: [PATCH] Remove - in fee rate The rest of the rustdocs use fee rate with no hyphen when using it in normal language, i.e. not a function argument or the type. Change it to match the others. --- units/src/fee.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/units/src/fee.rs b/units/src/fee.rs index c44bc8966..86f4a5b5c 100644 --- a/units/src/fee.rs +++ b/units/src/fee.rs @@ -19,7 +19,7 @@ impl Amount { /// Checked weight ceiling division. /// /// Be aware that integer division loses the remainder if no exact division - /// can be made. This method rounds up ensuring the transaction fee-rate is + /// can be made. This method rounds up ensuring the transaction fee rate is /// sufficient. See also [`Self::checked_div_by_weight_floor`]. /// /// Returns [`None`] if overflow occurred.