Prefer println!() to println!("")
This commit is contained in:
parent
79c6f632ef
commit
fc4a51a242
2 changed files with 2 additions and 2 deletions
|
@ -387,7 +387,7 @@ fn format_files(
|
|||
for f in files {
|
||||
print!(" {}", f.display());
|
||||
}
|
||||
println!("");
|
||||
println!();
|
||||
}
|
||||
let mut command = Command::new("rustfmt")
|
||||
.stdout(stdout)
|
||||
|
|
|
@ -478,7 +478,7 @@ macro_rules! create_config {
|
|||
$(
|
||||
println!("{}{}", space_str, $dstring);
|
||||
)+
|
||||
println!("");
|
||||
println!();
|
||||
)+
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue