diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-12 20:49:47 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-12 20:49:47 +0200 |
commit | ef8172874f650078e8cfb6e1582de4ece5495640 (patch) | |
tree | 35ced9080db86739904e903a68999fd1606bc9b1 /src/config.rs | |
parent | b28c5418b0635bf2fc3b0d18922df4ebb7cccd57 (diff) | |
download | gnix-ef8172874f650078e8cfb6e1582de4ece5495640.tar gnix-ef8172874f650078e8cfb6e1582de4ece5495640.tar.bz2 gnix-ef8172874f650078e8cfb6e1582de4ece5495640.tar.zst |
add any/all conditions and experimental CGI support
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index ef90f46..e3b0d3c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -161,7 +161,7 @@ impl<'de> Deserialize<'de> for DynNode { .ok_or(serde::de::Error::unknown_variant(s, &[]))? .instanciate(tv.value) .map_err(|e| { - let x = format!("instanciating modules {s:?}: {e:?}"); + let x = format!("instanciating module {s:?}: {e:?}"); serde::de::Error::custom(e.context(x)) })?; |