We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b55d19 commit cf2bad8Copy full SHA for cf2bad8
src/libstd/fs.rs
@@ -1595,9 +1595,9 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
1595
///
1596
/// Notable exception is made for situations where any of the directories
1597
/// specified in the `path` could not be created as it was being created concurrently.
1598
-/// Such cases are considered success. In other words: calling `create_dir_all`
1599
-/// concurrently from multiple threads or processes is guaranteed to not fail
1600
-/// due to race itself.
+/// Such cases are considered to be successful. That is, calling `create_dir_all`
+/// concurrently from multiple threads or processes is guaranteed not to fail
+/// due to a race condition with itself.
1601
1602
/// # Examples
1603
0 commit comments