Skip to content

Commit

Permalink
Merge pull request #3 from jelmer/typo
Browse files Browse the repository at this point in the history
Fix two typos in erbium.
  • Loading branch information
isomer authored Aug 9, 2020
2 parents b3c0da0 + 59d61e2 commit 8504f55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion man/erbium.8
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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 8504f55

Please sign in to comment.