Browse Source

Add space in cc list.

Eric Huss 2 years ago
parent
commit
b11c42f9eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/handlers/mentions.rs

+ 1 - 1
src/handlers/mentions.rs

@@ -98,7 +98,7 @@ pub(super) async fn handle_input(
             None => write!(result, "Some changes occurred in {to_mention}").unwrap(),
         }
         if !reviewers.is_empty() {
-            write!(result, "\n\ncc {}", reviewers.join(",")).unwrap();
+            write!(result, "\n\ncc {}", reviewers.join(", ")).unwrap();
         }
         state.paths.push(to_mention.to_string());
     }