Skip to content

Commit 0961c69

Browse files
committed
s/wiki/lint list/
1 parent b2caf66 commit 0961c69

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ All notable changes to this project will be documented in this file.
507507
## 0.0.74 — 2016-06-07
508508
* Fix bug with `cargo-clippy` JSON parsing
509509
* Add the `CLIPPY_DISABLE_DOCS_LINKS` environment variable to deactivate the
510-
“for further information visit *wiki-link*” message.
510+
“for further information visit *lint-link*” message.
511511

512512
## 0.0.73 — 2016-06-05
513513
* Fix false positives in [`useless_let_if_seq`]
@@ -612,7 +612,7 @@ All notable changes to this project will be documented in this file.
612612
[`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
613613
[configuration file]: ./rust-clippy#configuration
614614

615-
<!-- begin autogenerated links to wiki -->
615+
<!-- begin autogenerated links to lint list -->
616616
[`absurd_extreme_comparisons`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
617617
[`almost_swapped`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#almost_swapped
618618
[`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.
894894
[`zero_prefixed_literal`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_prefixed_literal
895895
[`zero_ptr`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_ptr
896896
[`zero_width_space`]: https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_width_space
897-
<!-- end autogenerated links to wiki -->
897+
<!-- end autogenerated links to lint list -->

util/update_lints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ def main(print_only=False, check=False):
192192
# update the links in the CHANGELOG
193193
changed |= replace_region(
194194
'CHANGELOG.md',
195-
"<!-- begin autogenerated links to wiki -->",
196-
"<!-- end autogenerated links to wiki -->",
195+
"<!-- begin autogenerated links to lint list -->",
196+
"<!-- end autogenerated links to lint list -->",
197197
lambda: ["[`{0}`]: {1}#{0}\n".format(l[1], docs_link) for l in
198198
sorted(all_lints + deprecated_lints,
199199
key=lambda l: l[1])],

0 commit comments

Comments
 (0)