From: Ian Jackson Date: Mon, 7 Jun 2021 00:07:11 +0000 (+0100) Subject: toml-de: Do not say it's a config file X-Git-Tag: otter-0.7.0~62 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=84014f87d1e502b2745a1f0cac5c6af29864e271;p=otter.git toml-de: Do not say it's a config file Currently used for specs, will be used for prefs too Signed-off-by: Ian Jackson --- diff --git a/src/toml-de.rs b/src/toml-de.rs index 0522ce1d..9efa5ad3 100644 --- a/src/toml-de.rs +++ b/src/toml-de.rs @@ -24,7 +24,7 @@ use serde::de::{ pub enum Error { #[error("deserialize failed (improper TOML structure?): {0}")] Custom(Box), - #[error("config file has invalid TOML syntax: {0}")] + #[error("file has invalid TOML syntax: {0}")] TomlSyntax(toml::de::Error), }