]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_fs_util/lib.rs
Auto merge of #61462 - GuillaumeGomez:fix-local-storage, r=Manishearth
[rust.git] / src / librustc_fs_util / lib.rs
index 340681d65c383807b13a01625ce1fa3475467314..ce63bcafd797c9ac38d206ed71e0d4e648c7632b 100644 (file)
@@ -58,7 +58,7 @@ pub enum LinkOrCopy {
     Copy,
 }
 
-/// Copy `p` into `q`, preferring to use hard-linking if possible. If
+/// Copies `p` into `q`, preferring to use hard-linking if possible. If
 /// `q` already exists, it is removed first.
 /// The result indicates which of the two operations has been performed.
 pub fn link_or_copy<P: AsRef<Path>, Q: AsRef<Path>>(p: P, q: Q) -> io::Result<LinkOrCopy> {