We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make tidy
1 parent 402442a commit 5f15729Copy full SHA for 5f15729
src/libcore/cell.rs
@@ -24,7 +24,8 @@
24
//! claim temporary, exclusive, mutable access to the inner value. Borrows for `RefCell<T>`s are
25
//! tracked 'at runtime', unlike Rust's native reference types which are entirely tracked
26
//! statically, at compile time. Because `RefCell<T>` borrows are dynamic it is possible to attempt
27
-//! to borrow a value that is already mutably borrowed; when this happens it results in thread panic.
+//! to borrow a value that is already mutably borrowed; when this happens it results in thread
28
+//! panic.
29
//!
30
//! # When to choose interior mutability
31
0 commit comments