style(dynamic): reformat struct initialization for improved readability and consistency

This commit is contained in:
elipeter 2026-06-01 22:51:19 -05:00
parent 8ee6e3af7c
commit ec76c9e08f

View file

@ -214,10 +214,7 @@ impl TargetDirLock {
Err(_) => {
// Cannot create the lockfile (perms / race on dir) — proceed
// unlocked rather than fail the build outright.
return Self {
path,
owned: false,
};
return Self { path, owned: false };
}
}
}