add new line separator

This commit is contained in:
yggverse 2025-09-08 16:40:26 +03:00
parent 712c5691d8
commit 6052cdb3dd

View file

@ -397,7 +397,7 @@ fn info(config: &Config, torrent: Torrent) -> Result<String> {
b.sort_by(|a, b| a.path.cmp(&b.path)); // @TODO optional
b
}) {
b.push("## Files".into());
b.push("## Files\n".into());
for file in files {
b.push(format!("* {} ({})", file.path(), format::size(file.length)));
}