Rollup merge of #99067 - est31:to_owned_link, r=Dylan-DPC

Intra-doc-link-ify reference to Clone::clone_from
This commit is contained in:
Matthias Krüger 2022-07-09 12:52:52 +02:00 committed by GitHub
commit e89ed4f752
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@ pub trait ToOwned {
/// Uses borrowed data to replace owned data, usually by cloning.
///
/// This is borrow-generalized version of `Clone::clone_from`.
/// This is borrow-generalized version of [`Clone::clone_from`].
///
/// # Examples
///