mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
s/wiki/lint list/
This commit is contained in:
parent
b2caf669a8
commit
0961c692fa
2 changed files with 5 additions and 5 deletions
|
@ -507,7 +507,7 @@ All notable changes to this project will be documented in this file.
|
|||
## 0.0.74 — 2016-06-07
|
||||
* Fix bug with `cargo-clippy` JSON parsing
|
||||
* Add the `CLIPPY_DISABLE_DOCS_LINKS` environment variable to deactivate the
|
||||
“for further information visit *wiki-link*” message.
|
||||
“for further information visit *lint-link*” message.
|
||||
|
||||
## 0.0.73 — 2016-06-05
|
||||
* Fix false positives in [`useless_let_if_seq`]
|
||||
|
@ -612,7 +612,7 @@ All notable changes to this project will be documented in this file.
|
|||
[`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
|
||||
[configuration file]: ./rust-clippy#configuration
|
||||
|
||||
<!-- begin autogenerated links to wiki -->
|
||||
<!-- begin autogenerated links to lint list -->
|
||||
[`absurd_extreme_comparisons`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
|
||||
[`almost_swapped`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#almost_swapped
|
||||
[`approx_constant`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#approx_constant
|
||||
|
@ -894,4 +894,4 @@ All notable changes to this project will be documented in this file.
|
|||
[`zero_prefixed_literal`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_prefixed_literal
|
||||
[`zero_ptr`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_ptr
|
||||
[`zero_width_space`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_width_space
|
||||
<!-- end autogenerated links to wiki -->
|
||||
<!-- end autogenerated links to lint list -->
|
||||
|
|
|
@ -192,8 +192,8 @@ def main(print_only=False, check=False):
|
|||
# update the links in the CHANGELOG
|
||||
changed |= replace_region(
|
||||
'CHANGELOG.md',
|
||||
"<!-- begin autogenerated links to wiki -->",
|
||||
"<!-- end autogenerated links to wiki -->",
|
||||
"<!-- begin autogenerated links to lint list -->",
|
||||
"<!-- end autogenerated links to lint list -->",
|
||||
lambda: ["[`{0}`]: {1}#{0}\n".format(l[1], docs_link) for l in
|
||||
sorted(all_lints + deprecated_lints,
|
||||
key=lambda l: l[1])],
|
||||
|
|
Loading…
Reference in a new issue