mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-26 14:40:32 +00:00
Fix typo in lint dump script
This commit is contained in:
parent
3d3d3732c0
commit
45bab501e1
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ def main(print_only=False, check=False):
|
|||
]
|
||||
for group in print_clippy_lint_groups:
|
||||
sys.stdout.write('\n## ' + group + '\n')
|
||||
for (_, name, _, descr) in sorted(clippy_lints[x]):
|
||||
for (_, name, _, descr) in sorted(clippy_lints[group]):
|
||||
sys.stdout.write('* [' + name + '](https://rust-lang-nursery.github.io/rust-clippy/master/index.html#' + name + ') (' + descr + ')\n')
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue