diff --git a/docs/bot_tutorial/message_embeds.md b/docs/bot_tutorial/message_embeds.md index 7f8db54..b88a709 100644 --- a/docs/bot_tutorial/message_embeds.md +++ b/docs/bot_tutorial/message_embeds.md @@ -38,7 +38,7 @@ embed.add_field(name='Inline field 1', value='Some value for this field', inline embed.add_field(name='Inline field 2', value='Another value for another field', inline=True) embed.add_field(name='Inline field 3', value='Third value for the third field', inline=True) embed.add_field(name='A non-inline field', value='You can only have a max of 3 inline field on 1 line', inline=False) -embed.description = 'This is the general description of the embed, you can use the Discord supported MD in here too, to make it look extra fancy. For example, creating some **bold** or ~~striketrhough~~ text.' +embed.description = 'This is the general description of the embed, you can use the Discord supported MD in here too, to make it look extra fancy. For example, creating some **bold** or ~~strikethrough~~ text.' ``` Last up, let's set a footer, color and add a timestamp ```py