From f8b717bff00ecf4f3f4cfa1b06765789dd05342c Mon Sep 17 00:00:00 2001 From: "Jari (LotU)" Date: Sat, 9 Sep 2017 11:54:16 +0200 Subject: [PATCH] Fix typo --- docs/bot_tutorial/message_embeds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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