fix typo in zola init (#1836)

This commit is contained in:
Michael Clayton 2022-04-26 17:42:16 -04:00 committed by GitHub
parent 27a200bb4e
commit 44b2f99ab8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ fn main() {
match cli.command {
Command::Init { name, force } => {
if let Err(e) = cmd::create_new_project(&name, force) {
console::unravel_errors("Failed to create the proejct", &e);
console::unravel_errors("Failed to create the project", &e);
std::process::exit(1);
}
}