1
Fork 0

Prefer println!() to println!("")

This commit is contained in:
topecongiro 2017-11-05 14:00:53 +09:00
parent 79c6f632ef
commit fc4a51a242
2 changed files with 2 additions and 2 deletions

View file

@ -387,7 +387,7 @@ fn format_files(
for f in files {
print!(" {}", f.display());
}
println!("");
println!();
}
let mut command = Command::new("rustfmt")
.stdout(stdout)

View file

@ -478,7 +478,7 @@ macro_rules! create_config {
$(
println!("{}{}", space_str, $dstring);
)+
println!("");
println!();
)+
}
}