From 1cd6128198b708c1b2a5f851cf02fb466a67a346 Mon Sep 17 00:00:00 2001 From: apiraino Date: Thu, 2 Mar 2023 10:04:10 +0100 Subject: [PATCH] Fixes text formatting introduced in a55c41a --- src/handlers/assign.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/handlers/assign.rs b/src/handlers/assign.rs index cb2c951c..fb2231f5 100644 --- a/src/handlers/assign.rs +++ b/src/handlers/assign.rs @@ -41,13 +41,14 @@ mod tests { const NEW_USER_WELCOME_MESSAGE: &str = "Thanks for the pull request, and welcome! \ The Rust team is excited to review your changes, and you should hear from {who} soon."; -const CONTRIBUTION_MESSAGE: &str = "Please see [the contribution -instructions]({contributing_url}) for more information. Namely, in order to ensure the -minimum review times lag, PR authors and assigned reviewers should ensure that the review +const CONTRIBUTION_MESSAGE: &str = "Please see [the contribution \ +instructions]({contributing_url}) for more information. Namely, in order to ensure the \ +minimum review times lag, PR authors and assigned reviewers should ensure that the review \ label (`S-waiting-on-review` and `S-waiting-on-author`) stays updated, invoking these commands \ -when appropriate:\n \ -`@rustbot author`: the review is finished, PR author should check the comments and take action accordingly \ -`@rustbot review`: the author is ready for a review, this PR will be queued again in the reviewer's queue"; +when appropriate: + +- `@rustbot author`: the review is finished, PR author should check the comments and take action accordingly +- `@rustbot review`: the author is ready for a review, this PR will be queued again in the reviewer's queue"; const WELCOME_WITH_REVIEWER: &str = "@{assignee} (or someone else)";