File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ All notable changes to this project will be documented in this file.
507
507
## 0.0.74 — 2016-06-07
508
508
* Fix bug with ` cargo-clippy ` JSON parsing
509
509
* 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.
511
511
512
512
## 0.0.73 — 2016-06-05
513
513
* Fix false positives in [ ` useless_let_if_seq ` ]
@@ -612,7 +612,7 @@ All notable changes to this project will be documented in this file.
612
612
[ `AsRef` ] : https://doc.rust-lang.org/std/convert/trait.AsRef.html
613
613
[ configuration file ] : ./rust-clippy#configuration
614
614
615
- <!-- begin autogenerated links to wiki -->
615
+ <!-- begin autogenerated links to lint list -->
616
616
[ `absurd_extreme_comparisons` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
617
617
[ `almost_swapped` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#almost_swapped
618
618
[ `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.
894
894
[ `zero_prefixed_literal` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_prefixed_literal
895
895
[ `zero_ptr` ] : https://rust-lang-nursery.github.io/rust-clippy/master/index.html#zero_ptr
896
896
[ `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 -->
Original file line number Diff line number Diff line change @@ -192,8 +192,8 @@ def main(print_only=False, check=False):
192
192
# update the links in the CHANGELOG
193
193
changed |= replace_region (
194
194
'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 -->" ,
197
197
lambda : ["[`{0}`]: {1}#{0}\n " .format (l [1 ], docs_link ) for l in
198
198
sorted (all_lints + deprecated_lints ,
199
199
key = lambda l : l [1 ])],
You can’t perform that action at this time.
0 commit comments