Browse Source

Formatting >:(

master
Dylan Baker 6 years ago
parent
commit
bc5e8a2e20
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/main.rs

+ 6
- 1
src/main.rs View File

64
     ).expect("Unable to write file");
64
     ).expect("Unable to write file");
65
 }
65
 }
66
 
66
 
67
-fn render_post_listing(cwd: &path::PathBuf, layout: &str, post_item_template: &str, posts: &Vec<Post>) {
67
+fn render_post_listing(
68
+    cwd: &path::PathBuf,
69
+    layout: &str,
70
+    post_item_template: &str,
71
+    posts: &Vec<Post>,
72
+) {
68
     let post_listing = posts
73
     let post_listing = posts
69
         .iter()
74
         .iter()
70
         .map(|ref post| {
75
         .map(|ref post| {

Loading…
Cancel
Save