From cbd482c763f4b0cfe02a00ca9b7d4537eae84731 Mon Sep 17 00:00:00 2001 From: Kallum Jones Date: Mon, 1 Aug 2022 14:37:30 +0100 Subject: [PATCH] Fix typo --- src/commands/init_command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/init_command.ts b/src/commands/init_command.ts index fa0e96d..b8c018b 100644 --- a/src/commands/init_command.ts +++ b/src/commands/init_command.ts @@ -5,7 +5,7 @@ import Subcommand from "./subcommand.js"; export default class InitCommand extends Subcommand { registerCommand(program: Command) { program.command("init") - .description("Initalises mod manager") + .description("Initialises mod manager") .action(this.execute); }