diff --git a/LICENSE b/LICENSE index 670cb8d..f7fe49c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2022, networkException +Copyright (c) 2022, networkException All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/source/main.rs b/source/main.rs index 4969ac4..d9e4d83 100644 --- a/source/main.rs +++ b/source/main.rs @@ -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)?;