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