File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " lintcheck"
3
3
version = " 0.0.1"
4
- description = " tool to monitor impact of changes in Clippys lints on a part of the ecosystem"
4
+ description = " tool to monitor impact of changes in Clippy's lints on a part of the ecosystem"
5
5
readme = " README.md"
6
6
license = " MIT OR Apache-2.0"
7
7
repository = " https://github.com/rust-lang/rust-clippy"
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ is explicitly specified in the options.
70
70
71
71
### Fix mode
72
72
You can run ` ./lintcheck/target/debug/lintcheck --fix ` which will run Clippy with ` --fix ` and
73
- print a warning if Clippys suggestions fail to apply (if the resulting code does not build).
73
+ print a warning if Clippy's suggestions fail to apply (if the resulting code does not build).
74
74
This lets us spot bad suggestions or false positives automatically in some cases.
75
75
76
76
Please note that the target dir should be cleaned afterwards since clippy will modify
Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ fn lintcheck_needs_rerun(lintcheck_logs_path: &Path) -> bool {
545
545
fn main ( ) {
546
546
// assert that we launch lintcheck from the repo root (via cargo lintcheck)
547
547
if std:: fs:: metadata ( "lintcheck/Cargo.toml" ) . is_err ( ) {
548
- eprintln ! ( "lintcheck needs to be run from clippys repo root!\n Use `cargo lintcheck` alternatively." ) ;
548
+ eprintln ! ( "lintcheck needs to be run from clippy's repo root!\n Use `cargo lintcheck` alternatively." ) ;
549
549
std:: process:: exit ( 3 ) ;
550
550
}
551
551
@@ -586,7 +586,7 @@ fn main() {
586
586
. map ( |o| String :: from_utf8_lossy ( & o. stdout ) . into_owned ( ) )
587
587
. expect ( "could not get clippy version!" ) ;
588
588
589
- // download and extract the crates, then run clippy on them and collect clippys warnings
589
+ // download and extract the crates, then run clippy on them and collect clippy's warnings
590
590
// flatten into one big list of warnings
591
591
592
592
let crates = read_crates ( & config. sources_toml_path ) ;
You can’t perform that action at this time.
0 commit comments