diff options
Diffstat (limited to 'core/async_cell.rs')
-rw-r--r-- | core/async_cell.rs | 2 |
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 { |