diff --git a/src/blockchain/any.rs b/src/blockchain/any.rs index 079524ae3..91f448b38 100644 --- a/src/blockchain/any.rs +++ b/src/blockchain/any.rs @@ -16,7 +16,7 @@ //! //! ## Example //! -//! When paired with the use of [`ConfigurableBlockchain`], it allows creating wallets with any +//! When paired with the use of [`ConfigurableBlockchain`], it allows creating any //! blockchain type supported using a single line of code: //! //! ```no_run diff --git a/src/wallet/mod.rs b/src/wallet/mod.rs index d0f863448..4006ccb29 100644 --- a/src/wallet/mod.rs +++ b/src/wallet/mod.rs @@ -163,7 +163,7 @@ impl fmt::Display for AddressInfo { pub struct SyncOptions { /// The progress tracker which may be informed when progress is made. pub progress: Option>, - /// The maximum number of addresses sync on. + /// The maximum number of new addresses to derive and cache on sync. pub max_addresses: Option, }