From 0a4fb53623aeb42e2daf340e17fbb0d52daad15d Mon Sep 17 00:00:00 2001 From: Michael Clayton Date: Tue, 26 Apr 2022 16:52:26 -0400 Subject: [PATCH] fix typo in `zola init` --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6cc2695684..7648ed3b0b 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); } }