Skip to content

Commit

Permalink
Fix small formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed Mar 4, 2025
1 parent 207ced5 commit 1328af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl Display for BindMount {
let source = self.source.to_string_lossy();
let dest = self.dest.to_string_lossy();
if self.read_only {
write!(f, "{source}:{dest}:ro",)
write!(f, "{source}:{dest}:ro")
} else {
write!(f, "{source}:{dest}")
}
Expand Down

0 comments on commit 1328af7

Please sign in to comment.