Skip to content

Commit 857b70f

Browse files
committed
Please the make tidy
1 parent 1e1e6e0 commit 857b70f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/cell.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
//! claim temporary, exclusive, mutable access to the inner value. Borrows for `RefCell<T>`s are
2525
//! tracked 'at runtime', unlike Rust's native reference types which are entirely tracked
2626
//! 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.
27+
//! to borrow a value that is already mutably borrowed; when this happens it results in thread
28+
//! panic.
2829
//!
2930
//! # When to choose interior mutability
3031
//!

0 commit comments

Comments
 (0)