Fix typo.

This commit is contained in:
jcamiel 2023-09-11 13:31:55 +02:00
parent 336ab101c8
commit d48dc7e296
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC

View File

@ -146,7 +146,7 @@ pub fn html_dir(arg_matches: &ArgMatches) -> Result<Option<PathBuf>, OptionsErro
if !path.exists() {
match std::fs::create_dir(path) {
Err(_) => Err(OptionsError::Error(format!(
"Html dir {} can not be created",
"HTML dir {} can not be created",
path.display()
))),
Ok(_) => Ok(Some(path.to_path_buf())),