From 21e09142680e14038170345f157c0662821567a8 Mon Sep 17 00:00:00 2001 From: Essem Date: Sat, 7 Jan 2023 18:40:10 -0600 Subject: [PATCH] Fix typo in custom commands docs --- docs/custom-commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/custom-commands.md b/docs/custom-commands.md index 1b8b1e7..2cce3e9 100644 --- a/docs/custom-commands.md +++ b/docs/custom-commands.md @@ -22,7 +22,7 @@ As you can see, each command is grouped into categories, which are represented b !!! tip The `message` category is special; commands in here act as right-click context menu message commands instead of "classic" or slash commands. -## Commnand Structure +## Command Structure It's recommended to use the `Command` class located in `classes/command.js` to create a new command in most cases. This class provides various parameters and fields that will likely be useful when creating a command. Here is a simple example of a working command file: ```js import Command from "../../classes/command.js";