refactor: Make room for parent function

This commit is contained in:
Ed Page 2020-12-30 21:13:20 -06:00
parent bc90bacff2
commit 220a79ff30
2 changed files with 4 additions and 4 deletions

View file

@ -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,

View file

@ -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(())