From a310955757128a0897076bc6da4a7314ff7cffa0 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 2 May 2023 16:15:16 +0200 Subject: [PATCH] typo --- src/misc/markdown.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/markdown.rs b/src/misc/markdown.rs index bbcbcb6..60ae341 100644 --- a/src/misc/markdown.rs +++ b/src/misc/markdown.rs @@ -30,7 +30,7 @@ impl<'de> Deserialize<'de> for Tag { { match <&str>::deserialize(deserializer) { Ok(s) => match serde_yaml::from_str(s) { - Ok(tags) => Ok(Self { name: tags }), + Ok(tag) => Ok(Self { name: tag }), Err(e) => Err(serde::de::Error::custom(e)), }, Err(e) => Err(e),