Skip to content

Commit df7e63b

Browse files
committed
Auto merge of #7627 - xFrednet:0000-updating-issue-templates-again, r=llogiq
Updating issue templates again for rustbot It turns out that our current issue template can sometimes trigger a rustbot error message, as can be seen in [#7626](#7626). I originally tested this in #7599, but it's apparently a bit inconsistent. This PR adds backticks to the commands, as correctly suggested by `@mikerite` in the comments. (Thank you!) ``@rustbot` label +S-blocked` --- Now I also pushed a tiny link fix as well. 🙃 --- changelog: none
2 parents e5ae3f5 + 169aea6 commit df7e63b

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/ISSUE_TEMPLATE/blank_issue.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ about: Create a blank issue.
55

66

77
<!--
8-
Additional labels can be added to this issue by including the following command:
8+
Additional labels can be added to this issue by including the following command
9+
(without the space after the @ symbol):
910
10-
@rustbot label +<label>
11+
`@rustbot label +<label>`
1112
1213
Common labels for this issue type are:
1314
* C-an-interesting-project

.github/ISSUE_TEMPLATE/bug_report.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ LLVM version: 10.0
3333
```
3434

3535
<!--
36-
Additional labels can be added to this issue by including the following command:
36+
Additional labels can be added to this issue by including the following command
37+
(without the space after the @ symbol):
3738
38-
@rustbot label +<label>
39+
`@rustbot label +<label>`
3940
4041
Common labels for this issue type are:
4142
* `I-suggestion-causes-error`

.github/ISSUE_TEMPLATE/false_positive.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ LLVM version: 10.0
3434
```
3535

3636
<!--
37-
Additional labels can be added to this issue by including the following command:
37+
Additional labels can be added to this issue by including the following command
38+
(without the space after the @ symbol):
3839
39-
@rustbot label +<label>
40+
`@rustbot label +<label>`
4041
4142
Common labels for this issue type are:
4243
* I-suggestion-causes-error

doc/adding_lints.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ directory. Adding a configuration to a lint can be useful for thresholds or to c
556556
behavior that can be seen as a false positive for some users. Adding a configuration is done
557557
in the following steps:
558558

559-
1. Adding a new configuration entry to [clippy_utils::conf](/clippy_utils/src/conf.rs)
559+
1. Adding a new configuration entry to [clippy_lints::utils::conf](/clippy_lints/src/utils/conf.rs)
560560
like this:
561561
```rust
562562
/// Lint: LINT_NAME.

0 commit comments

Comments
 (0)