apply doc suggestions from @notmandatory

Co-authored-by: Steve Myers <github@notmandatory.org>
This commit is contained in:
Lloyd Fournier 2022-02-24 20:59:21 +11:00 committed by GitHub
parent 035307ef54
commit fbb50ad1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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<Box<dyn Progress>>,
/// The maximum number of addresses sync on.
/// The maximum number of new addresses to derive and cache on sync.
pub max_addresses: Option<u32>,
}