about summary refs log tree commit diff
path: root/src/libstd/sys/windows
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-07-15 14:51:02 +0000
committerbors <bors@rust-lang.org>2017-07-15 14:51:02 +0000
commita783fe2f77dfc69bdfbee539488403ff8883fd25 (patch)
tree2f2b941613ea1aa7b2d62977052c3504f89398f7 /src/libstd/sys/windows
parentc4373bd6a29e4f68becfb0874f3199b8b0c2d482 (diff)
parente3825ecd4c4e79eff77cb0c2ed51447a8a344ce0 (diff)
downloadrust-a783fe2f77dfc69bdfbee539488403ff8883fd25.tar.gz
rust-a783fe2f77dfc69bdfbee539488403ff8883fd25.zip
Auto merge of #43246 - frewsxcv:rollup, r=frewsxcv
Rollup of 8 pull requests

- Successful merges: #43074, #43145, #43159, #43202, #43222, #43228, #43229, #43240
- Failed merges:
Diffstat (limited to 'src/libstd/sys/windows')
-rw-r--r--src/libstd/sys/windows/ext/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/ext/fs.rs b/src/libstd/sys/windows/ext/fs.rs
index 67348a00494..a1c63e33588 100644
--- a/src/libstd/sys/windows/ext/fs.rs
+++ b/src/libstd/sys/windows/ext/fs.rs
@@ -477,7 +477,7 @@ pub fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q)
 /// use std::os::windows::fs;
 ///
 /// # fn foo() -> std::io::Result<()> {
-/// fs::symlink_file("a", "b")?;
+/// fs::symlink_dir("a", "b")?;
 /// # Ok(())
 /// # }
 /// ```