Fix typo in custom commands docs

This commit is contained in:
Essem 2023-01-07 18:40:10 -06:00
parent c6dd21addd
commit 21e0914268
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
1 changed files with 1 additions and 1 deletions

View File

@ -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";