Skip to content

Commit 8d93fad

Browse files
committed
chore: typos
More caught on by Nix CI in #1257.
1 parent c6b9ed3 commit 8d93fad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

crates/bdk/src/wallet/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2473,7 +2473,7 @@ impl<D> Wallet<D> {
24732473
/// This method takes in an iterator of `(tx, last_seen)` where `last_seen` is the timestamp of
24742474
/// when the transaction was last seen in the mempool. This is used for conflict resolution
24752475
/// when there is conflicting unconfirmed transactions. The transaction with the later
2476-
/// `last_seen` is prioritied.
2476+
/// `last_seen` is prioritized.
24772477
pub fn apply_unconfirmed_txs<'t>(
24782478
&mut self,
24792479
unconfirmed_txs: impl IntoIterator<Item = (&'t Transaction, u64)>,

crates/chain/src/persist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ where
5959
/// Stages a new changeset and commits it (along with any other previously staged changes) to
6060
/// the persistence backend
6161
///
62-
/// Convience method for calling [`stage`] and then [`commit`].
62+
/// Convenience method for calling [`stage`] and then [`commit`].
6363
///
6464
/// [`stage`]: Self::stage
6565
/// [`commit`]: Self::commit

example-crates/wallet_rpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
$ cargo run --bin wallet_rpc -- --help
55
66
wallet_rpc 0.1.0
7-
Bitcoind RPC example usign `bdk::Wallet`
7+
Bitcoind RPC example using `bdk::Wallet`
88
99
USAGE:
1010
wallet_rpc [OPTIONS] <DESCRIPTOR> [CHANGE_DESCRIPTOR]

example-crates/wallet_rpc/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use std::{path::PathBuf, sync::mpsc::sync_channel, thread::spawn, time::Instant}
1212

1313
const DB_MAGIC: &str = "bdk-rpc-wallet-example";
1414

15-
/// Bitcoind RPC example usign `bdk::Wallet`.
15+
/// Bitcoind RPC example using `bdk::Wallet`.
1616
///
1717
/// This syncs the chain block-by-block and prints the current balance, transaction count and UTXO
1818
/// count.

0 commit comments

Comments
 (0)