Skip to content

Commit a51c6aa

Browse files
committed
Break line longer than 100 characters
1 parent f2adee7 commit a51c6aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/fs.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,8 @@ impl DirBuilder {
17771777
fn create_dir_all(&self, path: &Path) -> io::Result<()> {
17781778
match self.inner.mkdir(path) {
17791779
Ok(()) => return Ok(()),
1780-
Err(ref e) if e.kind() == io::ErrorKind::AlreadyExists && path.is_dir() => return Ok(()),
1780+
Err(ref e)
1781+
if e.kind() == io::ErrorKind::AlreadyExists && path.is_dir() => return Ok(()),
17811782
Err(ref e) if e.kind() == io::ErrorKind::NotFound => {}
17821783
Err(e) => return Err(e),
17831784
}

0 commit comments

Comments
 (0)