mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Missed a paren
This commit is contained in:
parent
c6f4b834c1
commit
b11b4f8cdd
1 changed files with 3 additions and 3 deletions
|
@ -266,11 +266,11 @@ impl core::fmt::Display for CargoCommand<'_> {
|
|||
let arguments = arguments
|
||||
.clone()
|
||||
.map(|a| format!("{a}"))
|
||||
.unwrap_or_else(|| "No extra arguments".into());
|
||||
.unwrap_or_else(|| "no extra arguments".into());
|
||||
if cargoarg.is_some() {
|
||||
write!(f, "Document ({feat}, {carg}, {arguments}")
|
||||
write!(f, "Document ({feat}, {carg}, {arguments})")
|
||||
} else {
|
||||
write!(f, "Document ({feat}, {arguments}")
|
||||
write!(f, "Document ({feat}, {arguments})")
|
||||
}
|
||||
}
|
||||
CargoCommand::Test {
|
||||
|
|
Loading…
Reference in a new issue