docs: Fixed mistake in EmbedBuilder docs page (#1303)
This commit is contained in:
committed by
Christopher F
parent
5569873717
commit
51618e66f2
@@ -40,9 +40,10 @@ public async Task SendRichEmbedAsync()
|
||||
.WithTitle("I overwrote \"Hello world!\"")
|
||||
.WithDescription("I am a description.")
|
||||
.WithUrl("https://example.com")
|
||||
.WithCurrentTimestamp()
|
||||
.Build();
|
||||
await ReplyAsync(embed: embed);
|
||||
.WithCurrentTimestamp();
|
||||
|
||||
//Your embed needs to be built before it is able to be sent
|
||||
await ReplyAsync(embed: embed.Build());
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user