Skip to content

Commit 5f15729

Browse files
committed
Please the make tidy
1 parent 402442a commit 5f15729

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/cell.rs

+2-1
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)