Main: Fix typo in comment

This commit is contained in:
networkException 2022-08-15 13:05:43 +02:00
parent 8408a0bafa
commit 2fe3f476a9
No known key found for this signature in database
GPG key ID: C1F2658DC370C8FC

View file

@ -81,7 +81,7 @@ fn run() -> Result<()> {
pool.install(|| {
return hashed_files.par_iter().progress_with(progress_bar).try_for_each(|path| -> Result<()> {
// Just opening the file and hashing using io::copy is roughly ~2.5x fater compared to sha256::digest_file
// Just opening the file and hashing using io::copy is roughly ~2.5x faster compared to sha256::digest_file
let mut hasher = Sha256::new();
let mut file = File::open(path)?;