We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 84d6c68 + c688e70 commit ad79abaCopy full SHA for ad79aba
library/core/src/cell.rs
@@ -585,7 +585,7 @@ pub struct RefCell<T: ?Sized> {
585
// Stores the location of the earliest currently active borrow.
586
// This gets updated whenver we go from having zero borrows
587
// to having a single borrow. When a borrow occurs, this gets included
588
- // in the generated `BorroeError/`BorrowMutError`
+ // in the generated `BorrowError/`BorrowMutError`
589
#[cfg(feature = "debug_refcell")]
590
borrowed_at: Cell<Option<&'static crate::panic::Location<'static>>>,
591
value: UnsafeCell<T>,
0 commit comments