Skip to content

Commit 79ba32d

Browse files
committed
fix(grumbles) : formatting and spelling nits
1 parent 58d481a commit 79ba32d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hw/src/ledger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ impl Manager {
324324
}
325325

326326

327-
impl <'a>Wallet<'a> for Manager {
327+
impl<'a> Wallet<'a> for Manager {
328328
type Error = Error;
329329
type Transaction = &'a [u8];
330330

hw/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,9 @@ impl HardwareWalletManager {
328328

329329
impl Drop for HardwareWalletManager {
330330
fn drop(&mut self) {
331-
// Indicate to the USB Hotplug handlers that it
331+
// Indicate to the USB Hotplug handler that it
332332
// shall terminate but don't wait for it to terminate.
333-
// If it don't terminate for some reason USB Hotplug events will be handled
333+
// If it doesn't terminate for some reason USB Hotplug events will be handled
334334
// even if the HardwareWalletManger has been dropped
335335
self.exiting.store(true, atomic::Ordering::Release);
336336
}

hw/src/trezor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ impl Manager {
267267
}
268268
}
269269

270-
impl <'a>Wallet<'a> for Manager {
270+
impl<'a> Wallet<'a> for Manager {
271271
type Error = Error;
272272
type Transaction = &'a TransactionInfo;
273273

0 commit comments

Comments
 (0)