From e66388d21f4de5bb48529bf529f54315a0800fb1 Mon Sep 17 00:00:00 2001 From: king6cong Date: Fri, 26 May 2017 19:21:29 +0800 Subject: [PATCH] doc rewording --- src/libstd/fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index 528d903b8b018..69843199348b5 100644 --- a/src/libstd/fs.rs +++ b/src/libstd/fs.rs @@ -1545,7 +1545,7 @@ pub fn create_dir>(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.