Skip to content

Commit

Permalink
fix: more typos
Browse files Browse the repository at this point in the history
More typos fix before bitcoindevkit#1165
  • Loading branch information
realeinherjar committed Nov 17, 2023
1 parent 46d39be commit 7f57fe6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/bdk/tests/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion crates/file_store/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`].
///
Expand Down

0 comments on commit 7f57fe6

Please sign in to comment.