mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
aa81d32165
Use Arc::clone and Rc::clone in documentation This PR replaces uses of `x.clone()` by `Rc::clone(&x)` (or `Arc::clone(&x)`) to better match the documentation for those types. @rustbot modify labels: T-doc