From f00e93bdcdaecb9c70dcd3cdc8209d944e05c89d Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 2 Aug 2023 08:20:51 +1000 Subject: [PATCH] Fix typos in rustdoc --- bitcoin/src/blockdata/fee_rate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitcoin/src/blockdata/fee_rate.rs b/bitcoin/src/blockdata/fee_rate.rs index 1a7ccded..6b8c128e 100644 --- a/bitcoin/src/blockdata/fee_rate.rs +++ b/bitcoin/src/blockdata/fee_rate.rs @@ -82,8 +82,8 @@ impl FeeRate { /// Checked weight multiplication. /// - /// Computes `self * rhs` where rhs is of type Weight. `None` is returned if an overflow - /// occured. + /// Computes `self * rhs` where rhs is of type Weight. `None` is returned if an overflow + /// occurred. pub fn checked_mul_by_weight(self, rhs: Weight) -> Option { self.0.checked_mul(rhs.to_wu()).map(Amount::from_sat) }