From 7f57fe632cf97227e1d027b4b4d3b67ac83d2715 Mon Sep 17 00:00:00 2001 From: Einherjar Date: Fri, 17 Nov 2023 06:35:06 -0600 Subject: [PATCH] fix: more typos More typos fix before #1165 --- crates/bdk/tests/wallet.rs | 2 +- crates/file_store/src/store.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bdk/tests/wallet.rs b/crates/bdk/tests/wallet.rs index 77ec1c8b1..d50ea991e 100644 --- a/crates/bdk/tests/wallet.rs +++ b/crates/bdk/tests/wallet.rs @@ -92,7 +92,7 @@ fn new_or_load() { let temp_dir = tempfile::tempdir().expect("must create tempdir"); let file_path = temp_dir.path().join("store.db"); - // init wallet when non-existant + // init wallet when non-existent let wallet_keychains = { let db = bdk_file_store::Store::open_or_create_new(DB_MAGIC, &file_path) .expect("must create db"); diff --git a/crates/file_store/src/store.rs b/crates/file_store/src/store.rs index bf88b8d34..ebab2fd00 100644 --- a/crates/file_store/src/store.rs +++ b/crates/file_store/src/store.rs @@ -105,7 +105,7 @@ where }) } - /// Attempt to open existing [`Store`] file; create it if the file is non-existant. + /// Attempt to open existing [`Store`] file; create it if the file is non-existent. /// /// Internally, this calls either [`open`] or [`create_new`]. ///