We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e1aacc commit 820debdCopy full SHA for 820debd
src/vfs/directory/directory_async.rs
@@ -47,10 +47,12 @@ pub async fn open_dir_async(
47
}
48
49
VfsResponse::Err(e) => return Err(e),
50
- _ => return Err(VfsError::ParseError {
51
- error: "unexpected response".to_string(),
52
- path: path.to_string(),
53
- }),
+ _ => {
+ return Err(VfsError::ParseError {
+ error: "unexpected response".to_string(),
+ path: path.to_string(),
54
+ })
55
+ }
56
57
58
return Ok(DirectoryAsync {
0 commit comments