docs: Fixed mistake in EmbedBuilder docs page (#1303)

This commit is contained in:
Casino Boyale
2019-05-04 22:00:26 +01:00
committed by Christopher F
parent 5569873717
commit 51618e66f2

View File

@@ -40,9 +40,10 @@ public async Task SendRichEmbedAsync()
.WithTitle("I overwrote \"Hello world!\"") .WithTitle("I overwrote \"Hello world!\"")
.WithDescription("I am a description.") .WithDescription("I am a description.")
.WithUrl("https://example.com") .WithUrl("https://example.com")
.WithCurrentTimestamp() .WithCurrentTimestamp();
.Build();
await ReplyAsync(embed: embed); //Your embed needs to be built before it is able to be sent
await ReplyAsync(embed: embed.Build());
} }
``` ```