Skip to content

Commit

Permalink
fix a typo in an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
shouya committed Aug 5, 2024
1 parent 313649a commit d6c732e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ fn validate_placeholders(config: &Templated) -> Result<(), ConfigError> {
for name in config.placeholders.keys() {
if !config.template.contains(&format!("${{{name}}}")) {
return Err(ConfigError::BadSourceTemplate(format!(
"placeholder %{{{name}}}% is not present in template",
"placeholder ${{{name}}} is not present in template",
)));
}
}
Expand Down

0 comments on commit d6c732e

Please sign in to comment.