about summary refs log tree commit diff
path: root/clippy_dev
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-02-28 13:59:47 +0100
committerMatthias Krüger <matthias.krueger@famsik.de>2021-02-28 23:07:12 +0100
commit25f909863b9946c65ae37375f8f95720b728cc9e (patch)
treee40c73499d5c9058c84355a176a2cfe173a1db23 /clippy_dev
parent45d6a77ce884f41c2ef5e1160aabbf355403d5cd (diff)
downloadrust-25f909863b9946c65ae37375f8f95720b728cc9e.tar.gz
rust-25f909863b9946c65ae37375f8f95720b728cc9e.zip
update lintcheck_crates logs and fix typos
Diffstat (limited to 'clippy_dev')
-rw-r--r--clippy_dev/lintcheck_crates.toml2
-rw-r--r--clippy_dev/src/lintcheck.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/clippy_dev/lintcheck_crates.toml b/clippy_dev/lintcheck_crates.toml
index f065b2de01e..dfee28f1a87 100644
--- a/clippy_dev/lintcheck_crates.toml
+++ b/clippy_dev/lintcheck_crates.toml
@@ -27,7 +27,7 @@ cxx = {name = "cxx", versions = ['1.0.32']}
 ryu = {name = "ryu", version = ['1.0.5']}
 serde_yaml = {name = "serde_yaml", versions = ['0.8.17']}
 thiserror = {name = "thiserror", versions = ['1.0.24']}
-# some embark crates there are other interesting crates but
+# some embark crates, there are other interesting crates but
 # unfortunately adding them increases lintcheck runtime drastically
 cfg-expr = {name = "cfg-expr", versions = ['0.7.1']}
 puffin = {name = "puffin", git_url = "https://github.com/EmbarkStudios/puffin", git_hash = "02dd4a3"}
diff --git a/clippy_dev/src/lintcheck.rs b/clippy_dev/src/lintcheck.rs
index 60cccfe2a63..1db0445559c 100644
--- a/clippy_dev/src/lintcheck.rs
+++ b/clippy_dev/src/lintcheck.rs
@@ -318,8 +318,8 @@ impl LintcheckConfig {
 
         let sources_toml_path = PathBuf::from(sources_toml);
 
-        // for the path where we save the lint results, get the filename without extenstion ( so for
-        // wasd.toml, use "wasd"....)
+        // for the path where we save the lint results, get the filename without extension (so for
+        // wasd.toml, use "wasd"...)
         let filename: PathBuf = sources_toml_path.file_stem().unwrap().into();
         let lintcheck_results_path = PathBuf::from(format!("lintcheck-logs/{}_logs.txt", filename.display()));