diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/posts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/posts.rs b/src/posts.rs index 2e1772a..efcb574 100644 --- a/src/posts.rs +++ b/src/posts.rs @@ -81,7 +81,7 @@ pub fn display(db: &db::Conn) -> error::Result<()> { out.for_each(|row| { if let Ok(post) = row { postvec.push(format!( - "{}. {} -> by {}\n{}\n\n", + "{}. {} -> by {}\n{}\n", post.id, post.title, post.author, post.body )); } |