Skip to content

Commit 45bab50

Browse files
committed
Fix typo in lint dump script
1 parent 3d3d373 commit 45bab50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/update_lints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def main(print_only=False, check=False):
177177
]
178178
for group in print_clippy_lint_groups:
179179
sys.stdout.write('\n## ' + group + '\n')
180-
for (_, name, _, descr) in sorted(clippy_lints[x]):
180+
for (_, name, _, descr) in sorted(clippy_lints[group]):
181181
sys.stdout.write('* [' + name + '](https://rust-lang-nursery.github.io/rust-clippy/master/index.html#' + name + ') (' + descr + ')\n')
182182
return
183183

0 commit comments

Comments
 (0)