Skip to content

Commit

Permalink
Please the make tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
barosl committed May 8, 2015
1 parent 1e1e6e0 commit 857b70f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libcore/cell.rs
Expand Up @@ -24,7 +24,8 @@
//! claim temporary, exclusive, mutable access to the inner value. Borrows for `RefCell<T>`s are
//! tracked 'at runtime', unlike Rust's native reference types which are entirely tracked
//! statically, at compile time. Because `RefCell<T>` borrows are dynamic it is possible to attempt
//! 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
//! panic.
//!
//! # When to choose interior mutability
//!
Expand Down

0 comments on commit 857b70f

Please sign in to comment.