From 54099ecae0cf847205b8bc8c0ef21f433671c2bc Mon Sep 17 00:00:00 2001 From: shouya <526598+shouya@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:14:34 +0900 Subject: [PATCH] clarify error message for missing dynamic source --- src/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.rs b/src/util.rs index b68356e..11021d7 100644 --- a/src/util.rs +++ b/src/util.rs @@ -125,7 +125,7 @@ pub enum Error { #[error("Failed fetching source: {0}")] FetchSource(Box), - #[error("Dynamic source unspecified")] + #[error("Source URL unspecified for dynamic source")] DynamicSourceUnspecified, #[error("Source parameter {placeholder} failed to match validation: {validation} (input: {input})")]