@@ -744,7 +744,7 @@ async def create_message(
744744 embeds : list [EmbedData ] | UndefinedType = UNDEFINED ,
745745 allowed_mentions : AllowedMentionsData | UndefinedType = UNDEFINED ,
746746 message_reference : MessageReferenceData | UndefinedType = UNDEFINED ,
747- componenets : list [ActionRowData ] | UndefinedType = UNDEFINED ,
747+ components : list [ActionRowData ] | UndefinedType = UNDEFINED ,
748748 sticker_ids : list [int ] | UndefinedType = UNDEFINED ,
749749 files : Iterable [File ] | UndefinedType = UNDEFINED ,
750750 attachments : list [AttachmentData ] | UndefinedType = UNDEFINED , # TODO: Partial
@@ -787,7 +787,7 @@ async def create_message(
787787 The allowed mentions for the message.
788788 message_reference:
789789 The message to reply to.
790- componenets :
790+ components :
791791 The components to send with the message.
792792 sticker_ids:
793793 A list of sticker ids to attach to the message.
@@ -855,8 +855,8 @@ async def create_message(
855855 payload ["allowed_mentions" ] = allowed_mentions
856856 if message_reference is not UNDEFINED :
857857 payload ["message_reference" ] = message_reference
858- if componenets is not UNDEFINED :
859- payload ["componenets " ] = componenets
858+ if components is not UNDEFINED :
859+ payload ["components " ] = components
860860 if sticker_ids is not UNDEFINED :
861861 payload ["sticker_ids" ] = sticker_ids
862862 if attachments is not UNDEFINED :
0 commit comments