From 84014f87d1e502b2745a1f0cac5c6af29864e271 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 7 Jun 2021 01:07:11 +0100 Subject: [PATCH] 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 --- src/toml-de.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), } -- 2.30.2