diff options
author | figsoda <[email protected]> | 2021-11-02 02:34:22 +0000 |
---|---|---|
committer | figsoda <[email protected]> | 2021-11-02 02:34:22 +0000 |
commit | 831bd7e91d1f97f565d6ea15d816e638a983ad00 (patch) | |
tree | c042af6b11ff77ac462c19f84bff748f210729cc /bin/src/lint.rs | |
parent | 90ea9335b55efb38802a2983a58580b3bc568c5f (diff) |
apply clippy lints
Diffstat (limited to 'bin/src/lint.rs')
-rw-r--r-- | bin/src/lint.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/src/lint.rs b/bin/src/lint.rs index e889d31..b5856c1 100644 --- a/bin/src/lint.rs +++ b/bin/src/lint.rs | |||
@@ -16,7 +16,7 @@ pub fn lint(vfs_entry: VfsEntry) -> LintResult { | |||
16 | let error_reports = parsed | 16 | let error_reports = parsed |
17 | .errors() | 17 | .errors() |
18 | .into_iter() | 18 | .into_iter() |
19 | .map(|e| Report::from_parse_err(e)); | 19 | .map(Report::from_parse_err); |
20 | 20 | ||
21 | let reports = parsed | 21 | let reports = parsed |
22 | .node() | 22 | .node() |