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 86b32ea commit 2307e9dCopy full SHA for 2307e9d
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