Skip to content

Commit

Permalink
Fix typo: erorr -> error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Aug 8, 2020
1 parent 278a7b9 commit 59d61e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl std::fmt::Display for Error {
write!(f, "UTF8 Decoding error reading configuration file: {}", e)
}
Error::DhcpError(e) => write!(f, "DHCP Config loading error: {}", e),
Error::YamlError(e) => write!(f, "Yaml parse erorr while reading configuration: {}", e),
Error::YamlError(e) => write!(f, "Yaml parse error while reading configuration: {}", e),
Error::MissingConfig => write!(f, "Configuration is empty/missing"),
Error::MultipleConfigs => {
write!(f, "Configuration file contains multiple configurations")
Expand Down

0 comments on commit 59d61e2

Please sign in to comment.