mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 14:52:56 +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