~zethra/stargazer

e4e9d77f3dfb736e6971b437219ff4fd78a3c4bd — Ben Aaron Goldberg 2 years ago 8b962d7
config: Fix typo in error message
1 files changed, 1 insertions(+), 1 deletions(-)

M src/config.rs
M src/config.rs => src/config.rs +1 -1
@@ 350,7 350,7 @@ fn check_section_empty(name: &str, section: &Properties) -> Result<()> {
            .map(|(k, v)| format!("{}={}\n", k, v))
            .collect();
        bail!(
            "Section `{}` contains parameters that are either not allowed for this router type or known:\n{}",
            "Section `{}` contains parameters that are either not allowed for this route type or is unknown:\n{}",
            name,
            extra
        );