From a5b576108e2e3ab54fb1c1f7ce183551dc8fdcfd Mon Sep 17 00:00:00 2001 From: networkException Date: Mon, 15 Aug 2022 13:05:43 +0200 Subject: [PATCH] Main: Fix typo in comment --- LICENSE | 2 +- source/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)?;