diff --git a/NetCord/Embed.cs b/NetCord/Embed.cs index 2cad7460..25461328 100644 --- a/NetCord/Embed.cs +++ b/NetCord/Embed.cs @@ -19,26 +19,25 @@ public class Embed : IJsonModel public EmbedType? Type => _jsonModel.Type; /// - /// The part of the embed where most of the text is contained, limited to 4096 characters. + /// The part of the embed where the main text is contained, limited to 4096 characters. /// public string? Description => _jsonModel.Description; /// - /// The link to the address of the webpage. Mostly used with the thumbnail, icon and author elements in order to link to an image. + /// A link to an address of a webpage. When set, the becomes a clickable link, directing to the URL. /// public string? Url => _jsonModel.Url; /// - /// Time that the embed was posted. Located next to the footer. + /// Displays time in a format similar to a message timestamp. Located next to the footer. /// public DateTimeOffset? Timestamp => _jsonModel.Timestamp; /// - /// Color of your embed’s border, usually in hexadecimal or decimal, specified by an integer between 0x000000 and 0xFFFFFF. + /// The color of the embed’s border in an RGB format. /// public Color? Color => _jsonModel.Color; - /// /// Text at the bottom of the embed, limited to 2048 characters. ///