소스 검색

Output metadata separated by , rather than |

Santiago Pastorino 5 년 전
부모
커밋
3df905bc1c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/meeting.rs

+ 2 - 2
src/meeting.rs

@@ -168,13 +168,13 @@ impl Template for IssuesTemplate {
                         .iter()
                         .map(|l| l.name.as_ref())
                         .collect::<Vec<_>>()
-                        .join(" | "),
+                        .join(", "),
                     issue
                         .assignees
                         .iter()
                         .map(|u| u.login.as_ref())
                         .collect::<Vec<_>>()
-                        .join(" | "),
+                        .join(", "),
                     post,
                 ));
             }