summaryrefslogtreecommitdiff
path: root/core/async_cell.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-06-26 15:10:27 +0200
committerGitHub <noreply@github.com>2023-06-26 09:10:27 -0400
commit801b9ec62d94f201e67d053ee90dae0b70e50a42 (patch)
tree145f840c570dd72258ef309e9d31f100a5aa5786 /core/async_cell.rs
parentad3c494b46c97f0cf91098b7ec2afa576ea7a3dd (diff)
chore: fix typos (#19572)
Diffstat (limited to 'core/async_cell.rs')
-rw-r--r--core/async_cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/async_cell.rs b/core/async_cell.rs
index 0f173ed17..97d70699d 100644
--- a/core/async_cell.rs
+++ b/core/async_cell.rs
@@ -390,7 +390,7 @@ mod internal {
let turn = self.turn.get();
if id < turn {
// We already made a borrow count reservation for this waiter but the
- // borrow will never be picked up and removesequently, never dropped.
+ // borrow will never be picked up and consequently, never dropped.
// Therefore, call the borrow drop handler here.
self.drop_borrow::<M>();
} else {