瀏覽代碼

Remove divider before triagebot section start

It's somewhat hard to decide when the divider should / shouldn't be
there as the triagebot-added text oscillates between being there and not
(and data remains there), so just remove it for now.
Mark Rousskov 6 年之前
父節點
當前提交
4c233e211e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/interactions.rs

+ 1 - 1
src/interactions.rs

@@ -35,7 +35,7 @@ pub struct EditIssueBody<'a> {
     id: &'static str,
 }
 
-static START_BOT: &str = "<!-- TRIAGEBOT_START -->\n\n----\n";
+static START_BOT: &str = "<!-- TRIAGEBOT_START -->\n\n";
 static END_BOT: &str = "<!-- TRIAGEBOT_END -->";
 
 impl<'a> EditIssueBody<'a> {