From 278a7b99170bb8b93ff5cfd7348d2dc4b7d94a09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sat, 8 Aug 2020 22:18:54 +0000 Subject: [PATCH 1/2] Fix typo in erbium.8. --- man/erbium.8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/erbium.8 b/man/erbium.8 index 310b112..1093e7b 100644 --- a/man/erbium.8 +++ b/man/erbium.8 @@ -34,7 +34,7 @@ when run separately there is no integration between the protocols. .SH OPTIONS .IP path/to/erbium.conf -Provide the path to the configuration file to read instea of erbium.conf +Provide the path to the configuration file to read instead of erbium.conf .SH ENVIRONMENT .IP RUST_BACKTRACE=full From 59d61e22e8dc5bc8445bd26f31e8245b66cc71c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sat, 8 Aug 2020 22:26:23 +0000 Subject: [PATCH 2/2] Fix typo: erorr -> error. --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index df88df4..a68dc94 100644 --- a/src/config.rs +++ b/src/config.rs @@ -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")