Skip to content

Commit 57e1c28

Browse files
authored
Merge pull request #6 from gaocegege/line
casual.rs: Add a horizontal line
2 parents 92d95bc + 7766def commit 57e1c28

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/casual.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ impl Extractor for Casual {
2929

3030
fn render(&self, out: &mut io::Write) -> Result<(), Error> {
3131
for entry in &self.entries {
32-
write!(out, "{}\n", entry)?
32+
// Add a horizontal line between the entries.
33+
write!(out, "{}\n\n***\n\n", entry)?
3334
}
3435
Ok(())
3536
}

0 commit comments

Comments
 (0)