mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 07:13:24 +03:00
fe5a1d7332
Update cell.rs, correct module level doc This change corrects the Cell<T> section by replacing `&mut` with `&` so the statement reads "an &T to the inner value can never be obtained". It also emphasizes that a single &mut T to the inner value can be obtained (e.g. via method core::cell::Cell::get_mut).