diff options
| author | bors <bors@rust-lang.org> | 2021-11-18 08:46:52 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-11-18 08:46:52 +0000 |
| commit | 8536647e61fec74f0aab68bb3bdced2eca9806fd (patch) | |
| tree | 6fc310d0d01f26b6355d786d2b098b70c48a4775 | |
| parent | bb58dc84c11c7699b1289f802c548d6a156a6eb7 (diff) | |
| parent | b5a61aa901df6043e7bac6c324df4f8858209d3e (diff) | |
| download | rust-8536647e61fec74f0aab68bb3bdced2eca9806fd.tar.gz rust-8536647e61fec74f0aab68bb3bdced2eca9806fd.zip | |
Auto merge of #7992 - togami2864:fix-typo, r=giraffate
fix typo just fixed typo changelog: none
| -rw-r--r-- | lintcheck/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lintcheck/src/main.rs b/lintcheck/src/main.rs index 97d3794fb84..41de2576e28 100644 --- a/lintcheck/src/main.rs +++ b/lintcheck/src/main.rs @@ -563,7 +563,7 @@ fn parse_json_message(json_message: &str, krate: &Crate) -> ClippyWarning { } } -/// Generate a short list of occuring lints-types and their count +/// Generate a short list of occurring lints-types and their count fn gather_stats(clippy_warnings: &[ClippyWarning]) -> (String, HashMap<&String, usize>) { // count lint type occurrences let mut counter: HashMap<&String, usize> = HashMap::new(); @@ -718,7 +718,7 @@ pub fn main() { // quarter of the time which might result in a longer wall clock runtime // This helps when we check many small crates with dep-trees that don't have a lot of branches in - // order to achive some kind of parallelism + // order to achieve some kind of parallelism // by default, use a single thread let num_cpus = config.max_jobs; |
