Skip to content

Commit

Permalink
Rollup merge of #126548 - rik86189:issue-88264-fix, r=tgross35
Browse files Browse the repository at this point in the history
Improved clarity of documentation for std::fs::create_dir_all

Closes #88264
  • Loading branch information
matthiaskrgr committed Jul 24, 2024
2 parents 7fac549 + dfb3fb3 commit ed5dfed
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions library/std/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2400,13 +2400,8 @@ pub fn create_dir<P: AsRef<Path>>(path: P) -> io::Result<()> {
///
/// # Errors
///
/// This function will return an error in the following situations, but is not
/// limited to just these cases:
///
/// * If any directory in the path specified by `path`
/// does not already exist and it could not be created otherwise. The specific
/// error conditions for when a directory is being created (after it is
/// determined to not exist) are outlined by [`fs::create_dir`].
/// The function will return an error if any directory specified in path does not exist and
/// could not be created. There may be other error conditions; see [`fs::create_dir`] for specifics.
///
/// Notable exception is made for situations where any of the directories
/// specified in the `path` could not be created as it was being created concurrently.
Expand Down

0 comments on commit ed5dfed

Please sign in to comment.