From 44b2f99ab879e8fe7e13b40c11fb37f9a17dd19e Mon Sep 17 00:00:00 2001 From: Michael Clayton Date: Tue, 26 Apr 2022 17:42:16 -0400 Subject: [PATCH] fix typo in `zola init` (#1836) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ec3bcaa5..add5546d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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); } }