diff options
| author | Alejandra González <blyxyas@gmail.com> | 2025-01-10 15:13:11 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-10 15:13:11 +0000 |
| commit | 7611dbb0478fab9c390da09da5311682c8ec2053 (patch) | |
| tree | 61ecec3e6b2f83a1d1e48790291bad5f0a3a8382 | |
| parent | 716a3a477866c3b7070b3f4d0dc4677bcadb4d1e (diff) | |
| parent | f3b1dd636d35b1b9debfdd52dc47a9960bb34948 (diff) | |
| download | rust-7611dbb0478fab9c390da09da5311682c8ec2053.tar.gz rust-7611dbb0478fab9c390da09da5311682c8ec2053.zip | |
Mention existing labels at CONTRIBUTING (#13978)
At CONTRIBUTING.md there are mentioned [`l-crash`](https://github.com/rust-lang/rust-clippy/issues?q=is%3Aopen+label%3Al-crash) and [`l-bug`](https://github.com/rust-lang/rust-clippy/issues?q=is%3Aopen%20label%3Al-bug) labels which are never used, so correct them to [`I-ICE`](https://github.com/rust-lang/rust-clippy/issues?q=is%3Aopen%20label%3AI-ICE) and [`C-bug`](https://github.com/rust-lang/rust-clippy/issues?q=is%3Aopen%20label%3AC-bug) changelog: none
| -rw-r--r-- | CONTRIBUTING.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1f6c918fc6c..3b33f719063 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -199,7 +199,7 @@ currently. Between writing new lints, fixing issues, reviewing pull requests and responding to issues there may not always be enough time to stay on top of it all. -Our highest priority is fixing [crashes][l-crash] and [bugs][l-bug], for example +Our highest priority is fixing [ICEs][I-ICE] and [bugs][C-bug], for example an ICE in a popular crate that many other crates depend on. We don't want Clippy to crash on your code and we want it to be as reliable as the suggestions from Rust compiler errors. @@ -213,8 +213,8 @@ Or rather: before the sync this should be addressed, e.g. by removing a lint again, so it doesn't hit beta/stable. [triage]: https://forge.rust-lang.org/release/triage-procedure.html -[l-crash]: https://github.com/rust-lang/rust-clippy/labels/L-crash -[l-bug]: https://github.com/rust-lang/rust-clippy/labels/L-bug +[I-ICE]: https://github.com/rust-lang/rust-clippy/labels/I-ICE +[C-bug]: https://github.com/rust-lang/rust-clippy/labels/C-bug [p-low]: https://github.com/rust-lang/rust-clippy/labels/P-low [p-medium]: https://github.com/rust-lang/rust-clippy/labels/P-medium [p-high]: https://github.com/rust-lang/rust-clippy/labels/P-high |
