about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-05-26 10:20:30 -0400
committerGitHub <noreply@github.com>2017-05-26 10:20:30 -0400
commit252a28638396d72f4c3a3dff6717b7aaddc017cc (patch)
tree1bda0dff1fc35a70a4f2ea07b93d008b90bdb62a /src/libstd
parent854196a0eda59d9e8bd90c943dd4df275ff2b2f2 (diff)
parente66388d21f4de5bb48529bf529f54315a0800fb1 (diff)
downloadrust-252a28638396d72f4c3a3dff6717b7aaddc017cc.tar.gz
rust-252a28638396d72f4c3a3dff6717b7aaddc017cc.zip
Rollup merge of #42241 - king6cong:master, r=steveklabnik
doc rewording
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index 528d903b8b0..69843199348 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -1545,7 +1545,7 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
 /// determined to not exist) are outlined by `fs::create_dir`.
 ///
 /// Notable exception is made for situations where any of the directories
-/// specified in the `path` could not be created as it was created concurrently.
+/// specified in the `path` could not be created as it was being created concurrently.
 /// Such cases are considered success. In other words: calling `create_dir_all`
 /// concurrently from multiple threads or processes is guaranteed to not fail
 /// due to race itself.