From 3435a1b8853015ba9b5cd395d06f77e8300b4a30 Mon Sep 17 00:00:00 2001 From: ITOH Date: Sun, 23 May 2021 14:10:17 +0200 Subject: [PATCH] fix typo --- src/types/interactions/commands/application_command_option.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/interactions/commands/application_command_option.ts b/src/types/interactions/commands/application_command_option.ts index 431e23a30..2d5a3c90a 100644 --- a/src/types/interactions/commands/application_command_option.ts +++ b/src/types/interactions/commands/application_command_option.ts @@ -13,6 +13,6 @@ export interface ApplicationCommandOption { required?: boolean; /** Choices for `string` and `int` types for the user to pick from */ choices?: ApplicationCommandOptionChoice[]; - /** If the optino is a subcommand or subcommand group type, this nested options will be the parameters */ + /** If the option is a subcommand or subcommand group type, this nested options will be the parameters */ options?: ApplicationCommandOption[]; }