Skip to content

Commit f84b72b

Browse files
authored
Rollup merge of rust-lang#5417 - flip1995:doc_update, r=flip1995
Update doc links and mentioned names in docs changelog: none
2 parents a1e49f9 + fac5a41 commit f84b72b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

CONTRIBUTING.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ High level approach:
3636

3737
### Finding something to fix/improve
3838

39-
All issues on Clippy are mentored, if you want help with a bug just ask @Manishearth, @llogiq, @mcarton or @oli-obk.
39+
All issues on Clippy are mentored, if you want help with a bug just ask
40+
@Manishearth, @flip1995, @phansch or @yaahc.
4041

4142
Some issues are easier than others. The [`good first issue`] label can be used to find the easy issues.
4243
If you want to work on an issue, please leave a comment so that we can assign it to you!
@@ -70,24 +71,22 @@ an AST expression). `match_def_path()` in Clippy's `utils` module can also be us
7071
[`T-AST`]: https://github.com/rust-lang/rust-clippy/labels/T-AST
7172
[`T-middle`]: https://github.com/rust-lang/rust-clippy/labels/T-middle
7273
[`E-medium`]: https://github.com/rust-lang/rust-clippy/labels/E-medium
73-
[`ty`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/ty
74+
[`ty`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty
7475
[nodes in the AST docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/
7576
[deep-nesting]: https://github.com/rust-lang/rust-clippy/blob/557f6848bd5b7183f55c1e1522a326e9e1df6030/clippy_lints/src/mem_forget.rs#L29-L43
7677
[if_chain]: https://docs.rs/if_chain/*/if_chain
7778
[nest-less]: https://github.com/rust-lang/rust-clippy/blob/557f6848bd5b7183f55c1e1522a326e9e1df6030/clippy_lints/src/bit_mask.rs#L124-L150
7879

7980
## Writing code
8081

81-
Have a look at the [docs for writing lints][adding_lints] for more details. [Llogiq's blog post on lints]
82-
is also a nice primer to lint-writing, though it does get into advanced stuff and may be a bit outdated.
82+
Have a look at the [docs for writing lints][adding_lints] for more details.
8383

8484
If you want to add a new lint or change existing ones apart from bugfixing, it's
8585
also a good idea to give the [stability guarantees][rfc_stability] and
8686
[lint categories][rfc_lint_cats] sections of the [Clippy 1.0 RFC][clippy_rfc] a
8787
quick read.
8888

8989
[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
90-
[Llogiq's blog post on lints]: https://llogiq.github.io/2015/06/04/workflows.html
9190
[clippy_rfc]: https://github.com/rust-lang/rfcs/blob/master/text/2476-clippy-uno.md
9291
[rfc_stability]: https://github.com/rust-lang/rfcs/blob/master/text/2476-clippy-uno.md#stability-guarantees
9392
[rfc_lint_cats]: https://github.com/rust-lang/rfcs/blob/master/text/2476-clippy-uno.md#lint-audit-and-categories

doc/adding_lints.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -463,11 +463,11 @@ don't hesitate to ask on [Discord] or in the issue/PR.
463463
[utils]: https://github.com/rust-lang/rust-clippy/blob/master/clippy_lints/src/utils/mod.rs
464464
[if_chain]: https://docs.rs/if_chain/*/if_chain/
465465
[from_expansion]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/struct.Span.html#method.from_expansion
466-
[in_external_macro]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/lint/fn.in_external_macro.html
466+
[in_external_macro]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/lint/fn.in_external_macro.html
467467
[span]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/struct.Span.html
468468
[applicability]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_errors/enum.Applicability.html
469469
[rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
470-
[nightly_docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
470+
[nightly_docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/
471471
[ast]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/index.html
472-
[ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/ty/sty/index.html
472+
[ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/sty/index.html
473473
[Discord]: https://discord.gg/rust-lang

0 commit comments

Comments
 (0)