mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 06:22:00 +00:00
Rollup merge of #87494 - midgleyc:comment-typos, r=joshtriplett
fix typo: whenver -> whenever Fix a typo in a comment in RefCell: "whenver" -> "whenever".
This commit is contained in:
commit
7282d71dc2
@ -583,7 +583,7 @@ impl<T> Cell<[T]> {
|
||||
pub struct RefCell<T: ?Sized> {
|
||||
borrow: Cell<BorrowFlag>,
|
||||
// Stores the location of the earliest currently active borrow.
|
||||
// This gets updated whenver we go from having zero borrows
|
||||
// This gets updated whenever we go from having zero borrows
|
||||
// to having a single borrow. When a borrow occurs, this gets included
|
||||
// in the generated `BorrowError/`BorrowMutError`
|
||||
#[cfg(feature = "debug_refcell")]
|
||||
|
Loading…
Reference in New Issue
Block a user