Skip to content

Commit

Permalink
Unrolled build for rust-lang#126548
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#126548 - rik86189:issue-88264-fix, r=tgross35

Improved clarity of documentation for std::fs::create_dir_all

Closes rust-lang#88264
  • Loading branch information
rust-timer committed Jul 25, 2024
2 parents c1a6199 + dfb3fb3 commit 18fca75
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 18fca75

Please sign in to comment.