Skip to content

Commit 2dbedb9

Browse files
authored
Merge pull request #1804 from hermit-os/typos
fix: typos
2 parents a459463 + 2a49d93 commit 2dbedb9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/drivers/net/virtio/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ impl VirtioNetDriver<Uninit> {
793793
self.dev_cfg.features.into(),
794794
)
795795
.unwrap();
796-
// Interrupt for communicating that a sended packet left, is not needed
796+
// Interrupt for communicating that a sent packet left, is not needed
797797
vq.disable_notifs();
798798

799799
inner.send_vqs.add(VirtQueue::Packed(vq));
@@ -819,7 +819,7 @@ impl VirtioNetDriver<Uninit> {
819819
self.dev_cfg.features.into(),
820820
)
821821
.unwrap();
822-
// Interrupt for communicating that a sended packet left, is not needed
822+
// Interrupt for communicating that a sent packet left, is not needed
823823
vq.disable_notifs();
824824

825825
inner.send_vqs.add(VirtQueue::Split(vq));

src/drivers/vsock/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ impl VirtioVsockDriver {
390390
)
391391
.unwrap(),
392392
));
393-
// Interrupt for communicating that a sended packet left, is not needed
393+
// Interrupt for communicating that a sent packet left, is not needed
394394
self.send_vq.disable_notifs();
395395

396396
// create the queues and tell device about them

0 commit comments

Comments
 (0)