Skip to content

Commit 7766def

Browse files
committed
casual.rs: Fix
Signed-off-by: Ce Gao <gaoce@caicloud.io>
1 parent 371c970 commit 7766def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/casual.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl Extractor for Casual {
3030
fn render(&self, out: &mut io::Write) -> Result<(), Error> {
3131
for entry in &self.entries {
3232
// Add a horizontal line between the entries.
33-
write!(out, "{}\n***\n", entry)?
33+
write!(out, "{}\n\n***\n\n", entry)?
3434
}
3535
Ok(())
3636
}

0 commit comments

Comments
 (0)