Fix write_with_newline, use writeln

This commit is contained in:
ice_iix 2020-06-29 18:06:35 -07:00
parent c3038f82ce
commit c2e3ddb805
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ impl Vars {
continue;
}
for line in var.description().lines() {
write!(file, "# {}\n", line).unwrap();
writeln!(file, "# {}", line).unwrap();
}
write!(
file,