Skip to content

Commit 4e2114f

Browse files
committed
Break line longer than 100 characters
1 parent a63ecf9 commit 4e2114f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/fs.rs

+2-1
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)