@@ -61,10 +61,10 @@ const RETURNING_USER_WELCOME_MESSAGE: &str = "r? @{assignee}
61
61
They will have a look at your PR within the next two weeks and either review your PR or \
62
62
reassign to another reviewer.
63
63
64
- Use r? to explicitly pick a reviewer" ;
64
+ Use `r?` to explicitly pick a reviewer" ;
65
65
66
66
const RETURNING_USER_WELCOME_MESSAGE_NO_REVIEWER : & str =
67
- "@{author}: no appropriate reviewer found, use r? to override" ;
67
+ "@{author}: no appropriate reviewer found, use `r?` to override" ;
68
68
69
69
const ON_VACATION_WARNING : & str = "{username} is on vacation. Please do not assign them to PRs." ;
70
70
@@ -642,7 +642,7 @@ impl fmt::Display for FindReviewerError {
642
642
f,
643
643
"No reviewers could be found from initial request `{}`\n \
644
644
This repo may be misconfigured.\n \
645
- Use r? to specify someone else to assign.",
645
+ Use `r?` to specify someone else to assign.",
646
646
initial. join( "," )
647
647
)
648
648
}
@@ -652,7 +652,7 @@ impl fmt::Display for FindReviewerError {
652
652
"Could not assign reviewer from: `{}`.\n \
653
653
User(s) `{}` are either the PR author, already assigned, or on vacation, \
654
654
and there are no other candidates.\n \
655
- Use r? to specify someone else to assign.",
655
+ Use `r?` to specify someone else to assign.",
656
656
initial. join( "," ) ,
657
657
filtered. join( "," ) ,
658
658
)
0 commit comments