Skip to content

Commit bdcad8a

Browse files
authored
fix(embeds): remove outdated embed note (discordjs#478)
1 parent b2506df commit bdcad8a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

guide/popular-topics/audit-logs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Let us start by looking quickly at the `fetchAuditLogs` method and how we want t
1515

1616
In the following examples, a very simple case for some auditLog types will be explored. Some basic error handling is performed but these code segments are by no means fool proof and are meant to teach you how fetching audit logs work. For a rigorous system you will most likely need to expand on the examples based on your own goals.
1717

18-
## Who Deleted a Message?
18+
## Who deleted a message?
1919
Let us dive right into it with probably the most common use of audit logs; understanding who deleted any given message in a discord server.
2020

2121
::: warning
@@ -76,7 +76,7 @@ client.on('messageDelete', async message => {
7676

7777
With this we now have a very simple logger telling us who deleted a message authored by another person.
7878

79-
## Who Kicked a User?
79+
## Who kicked a user?
8080

8181
Similarly to the `messageDelete` case, we will start with a bare-bones bot looking, this time, at the `guildMemberRemove` event.
8282

guide/popular-topics/embeds.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,6 @@ If you want to build the new embed data on the template of a previously sent emb
389389
## Notes
390390

391391
- To display fields side-by-side, you need at least two consecutive fields set to `inline`
392-
- By default, up to 3 fields will display inline. If a thumbnail is set, this will change to 2
393392
- The timestamp will automatically adjust the timezone depending on the user's device
394393
- Mentions of any kind will only render correctly in field values and descriptions
395394
- Mentions in embeds will not trigger a notification

0 commit comments

Comments
 (0)