Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/handlers/assign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ const RETURNING_USER_WELCOME_MESSAGE: &str = "r? @{assignee}
They will have a look at your PR within the next two weeks and either review your PR or \
reassign to another reviewer.

Use r? to explicitly pick a reviewer";
Use `r?` to explicitly pick a reviewer";

const RETURNING_USER_WELCOME_MESSAGE_NO_REVIEWER: &str =
"@{author}: no appropriate reviewer found, use r? to override";
"@{author}: no appropriate reviewer found, use `r?` to override";

const ON_VACATION_WARNING: &str = "{username} is on vacation. Please do not assign them to PRs.";

Expand Down Expand Up @@ -642,7 +642,7 @@ impl fmt::Display for FindReviewerError {
f,
"No reviewers could be found from initial request `{}`\n\
This repo may be misconfigured.\n\
Use r? to specify someone else to assign.",
Use `r?` to specify someone else to assign.",
initial.join(",")
)
}
Expand All @@ -652,7 +652,7 @@ impl fmt::Display for FindReviewerError {
"Could not assign reviewer from: `{}`.\n\
User(s) `{}` are either the PR author, already assigned, or on vacation, \
and there are no other candidates.\n\
Use r? to specify someone else to assign.",
Use `r?` to specify someone else to assign.",
initial.join(","),
filtered.join(","),
)
Expand Down