diff --git a/benches/checks.rs b/benches/checks.rs index 92e4eb8..3379392 100644 --- a/benches/checks.rs +++ b/benches/checks.rs @@ -171,7 +171,7 @@ fn bench_check_file(data: &str, b: &mut test::Bencher) { let parser = typos::tokens::Tokenizer::new(); let checks = typos_cli::checks::TyposSettings::new().build_typos(); b.iter(|| { - checks.check_file( + checks.check_file_content( sample_path.path(), true, &parser, diff --git a/src/checks.rs b/src/checks.rs index 7692cc0..01bfd91 100644 --- a/src/checks.rs +++ b/src/checks.rs @@ -49,7 +49,7 @@ pub trait Check: Send + Sync { Ok(()) } - fn check_file( + fn check_file_content( &self, path: &std::path::Path, explicit: bool, @@ -401,7 +401,7 @@ impl Check for Files { Ok(()) } - fn check_file( + fn check_file_content( &self, path: &std::path::Path, _explicit: bool, @@ -492,7 +492,7 @@ fn check_entry( if entry.file_type().map(|t| t.is_file()).unwrap_or(true) { let explicit = entry.depth() == 0; checks.check_filename(entry.path(), parser, dictionary, reporter)?; - checks.check_file(entry.path(), explicit, parser, dictionary, reporter)?; + checks.check_file_content(entry.path(), explicit, parser, dictionary, reporter)?; } Ok(())