Skip to content

Commit 0768778

Browse files
author
Niko Matsakis
committed
do not print @ for optional names
1 parent cc932e7 commit 0768778

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

crates/rust-project-goals-cli/src/rfc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub fn generate_comment(path: &Path) -> anyhow::Result<()> {
6161
}
6262

6363
for member in members {
64-
println!("* [ ] @{} (optional)", member.github);
64+
println!("* [ ] {} (optional)", member.github);
6565
}
6666
}
6767

src/admin/fcp_command.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ To use, simply invoke the command with the directory for the goal period, e.g.,
88
> cargo rpg rfc src/2025h1
99
```
1010

11-
This will emit a comment to stdout that includes the name of each team which has registered asks along with checkboxes for each individual on that team.
11+
This will emit a comment to stdout that includes the name of each team which has registered asks along with checkboxes for each individual on that team.
12+
13+
To avoid exceeding Github's limit of 50 usernames per message, only leads are cited with `@` usernames.

0 commit comments

Comments
 (0)