Skip to content

Commit 820debd

Browse files
Format Rust code using rustfmt
1 parent 0e1aacc commit 820debd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/vfs/directory/directory_async.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,12 @@ pub async fn open_dir_async(
4747
}
4848
}
4949
VfsResponse::Err(e) => return Err(e),
50-
_ => return Err(VfsError::ParseError {
51-
error: "unexpected response".to_string(),
52-
path: path.to_string(),
53-
}),
50+
_ => {
51+
return Err(VfsError::ParseError {
52+
error: "unexpected response".to_string(),
53+
path: path.to_string(),
54+
})
55+
}
5456
}
5557

5658
return Ok(DirectoryAsync {

0 commit comments

Comments
 (0)