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); } }