Browse Source

Fix typo

pull/56/head
Jari (LotU) 8 years ago
committed by GitHub
parent
commit
f8b717bff0
  1. 2
      docs/bot_tutorial/message_embeds.md

2
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

Loading…
Cancel
Save