From 4d0d78a3af2ca300c6b40348724e806bd51ef27a Mon Sep 17 00:00:00 2001 From: Shing Him Ng Date: Wed, 27 Nov 2024 07:45:57 -0600 Subject: [PATCH] Fix typo in from_next_work_required documentation --- bitcoin/src/pow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/pow.rs b/bitcoin/src/pow.rs index 243da4a3c..b6d531cb2 100644 --- a/bitcoin/src/pow.rs +++ b/bitcoin/src/pow.rs @@ -357,7 +357,7 @@ define_extension_trait! { /// ref: /// /// Given the previous Target, represented as a [`CompactTarget`], the difficulty is adjusted - /// by taking the timespan between them, and multipling the current [`CompactTarget`] by a factor + /// by taking the timespan between them, and multiplying the current [`CompactTarget`] by a factor /// of the net timespan and expected timespan. The [`CompactTarget`] may not adjust by more than /// a factor of 4, or adjust beyond the maximum threshold for the network. ///