浏览代码

Formatting >:(

master
Dylan Baker 6 年前
父节点
当前提交
bc5e8a2e20
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6
    1
      src/main.rs

+ 6
- 1
src/main.rs 查看文件

@@ -64,7 +64,12 @@ fn render_post(cwd: &path::PathBuf, layout: &str, post_template: &str, post: &Po
64 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 73
     let post_listing = posts
69 74
         .iter()
70 75
         .map(|ref post| {

正在加载...
取消
保存