mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 02:13:51 +00:00
fix(LazyCell): documentation of get[_mut] was wrong - `LazyCell::get`: said it was returning a **mutable** reference. - `LazyCell::get_mut`: said it was returning a reference (the mutable was missing). Related to #129333 (`lazy_get`). `LazyLock`'s documentation was correct.