diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-10-02 17:10:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-02 17:10:46 +0200 |
| commit | 06d5218b0ff9d3e4286a71cb8b7925048655aaef (patch) | |
| tree | df201f8244b76125a9663a4aede63bd189adc5bb | |
| parent | 2e0db79f0b6ef4248d22b50b090c42fc77122cd0 (diff) | |
| parent | aa3251dd3b3d4550bdfd740ba8b4855a6c83d3be (diff) | |
| download | rust-06d5218b0ff9d3e4286a71cb8b7925048655aaef.tar.gz rust-06d5218b0ff9d3e4286a71cb8b7925048655aaef.zip | |
Rollup merge of #131151 - jieyouxu:adjust-pr-template, r=fmease
Replace zero-width whitespace with a visible `\` in the PR template People (incl. myself) tried to copy the `r?` which had an invisible zero-width whitespace (meaning it was actually more like `r⌴?`), causing rustbot to not recognize the instruction, and which makes it difficult to figure out why it didn't work. This PR replaces the zero-width whitespace with a visible `\` alongside a comment to remove the `\`. It's a bit less "visual", but at least it's visible why the rustbot assignment doesn't work.
| -rw-r--r-- | .github/pull_request_template.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index fd54a153a16..ecf8f993f90 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -7,6 +7,6 @@ tracking issue or there are none, feel free to ignore this. This PR will get automatically assigned to a reviewer. In case you would like a specific user to review your work, you can assign it to them by using - r? <reviewer name> + r\? <reviewer name> (with the `\` removed) --> <!-- homu-ignore:end --> |
