Fix typos

This commit is contained in:
Dimitris Apostolou 2023-03-24 09:56:08 +02:00
parent f923e403f0
commit 629fa80674
No known key found for this signature in database
GPG Key ID: 4B5D20E938204A8A
2 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ impl ConfigurationSources {
for &(ref source, must_read) in &self.files { for &(ref source, must_read) in &self.files {
let required = must_read == MustRead::MustRead; let required = must_read == MustRead::MustRead;
// Returns Err(error) if we shuold bail, // Returns Err(error) if we should bail,
// or Ok(()) if we should ignore the error and skip the file. // or Ok(()) if we should ignore the error and skip the file.
let handle_io_error = |e: io::Error| { let handle_io_error = |e: io::Error| {
if e.kind() == io::ErrorKind::NotFound && !required { if e.kind() == io::ErrorKind::NotFound && !required {

View File

@ -49,7 +49,7 @@ RUST=(
) )
############################################################################### ###############################################################################
# EXEUCTION OF THE ACTUAL TESTS # EXECUTION OF THE ACTUAL TESTS
############################################################################### ###############################################################################
MISSING_BIN=() MISSING_BIN=()