mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 09:53:04 +03:00
fbb9e69226
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.