Skip to content

Commit 831fdf3

Browse files
Change FCP close message to allow for non-RFC FCPs (#294)
This updates the message to describe the thing being FCPed as "this" rather than "the RFC".
1 parent e5b9b0b commit 831fdf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/github/nag.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,13 +1253,13 @@ impl<'a> RfcBotComment<'a> {
12531253

12541254
match disposition {
12551255
FcpDisposition::Merge => {
1256-
msg.push_str("\n\nThe RFC will be merged soon.");
1256+
msg.push_str("\n\nThis will be merged soon.");
12571257
}
12581258
FcpDisposition::Close if can_ffcp_close(issue) => {
1259-
msg.push_str("\n\nThe RFC is now closed.");
1259+
msg.push_str("\n\nThis is now closed.");
12601260
}
12611261
FcpDisposition::Postpone if can_ffcp_postpone(issue) => {
1262-
msg.push_str("\n\nThe RFC is now postponed.");
1262+
msg.push_str("\n\nThis is now postponed.");
12631263
}
12641264
_ => {}
12651265
}

0 commit comments

Comments
 (0)