Skip to content

Commit c3225e7

Browse files
committed
Fix Rust formatting
1 parent 63e4f9e commit c3225e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

plugins/warp/src/container/disk.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ pub struct DiskContainer {
2727

2828
impl DiskContainer {
2929
pub fn new(name: String, sources: HashMap<SourceId, DiskContainerSource>) -> Self {
30-
Self { name, sources, writable: true }
30+
Self {
31+
name,
32+
sources,
33+
writable: true,
34+
}
3135
}
3236

3337
pub fn new_from_dir(dir_path: PathBuf) -> Self {

0 commit comments

Comments
 (0)