Co-authored-by: Steve Myers <github@notmandatory.org>
//!
//! ## 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
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>,
}