From 91fc8541136983eb6010f74fdc91d858ef5660c5 Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Mon, 2 Sep 2024 21:57:42 -0400 Subject: [PATCH] fix error message --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3aed5a4..c9d4d8a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -70,7 +70,7 @@ impl<'de> Deserialize<'de> for CompileArgs { type Value = CompileArgs; fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { - formatter.write_str("a string representing a file path") + formatter.write_str("a string representing a command line argument") } fn visit_seq(self, mut seq: A) -> Result