diff --git a/src/Discord.Net.Rest/Extensions/StringExtensions.cs b/src/Discord.Net.Rest/Extensions/StringExtensions.cs
index 9768b27e4..bc6e20ae8 100644
--- a/src/Discord.Net.Rest/Extensions/StringExtensions.cs
+++ b/src/Discord.Net.Rest/Extensions/StringExtensions.cs
@@ -4,14 +4,16 @@ using Newtonsoft.Json;
namespace Discord.Rest
{
///
- /// Responsible for formatting certain entities as json string, to reuse later on.
+ /// Responsible for formatting certain entities as Json , to reuse later on.
///
public static class StringExtensions
{
///
- /// Gets a Json formatted from an to reuse.
- /// See to parse Json back into embeds.
+ /// Gets a Json formatted from an .
///
+ ///
+ /// See to parse Json back into embed.
+ ///
/// The builder to format as Json .
/// The formatting in which the Json will be returned.
/// A Json containing the data from the .
@@ -19,9 +21,11 @@ namespace Discord.Rest
=> ToJsonString(builder.Build(), formatting);
///
- /// Gets a Json formatted from an to reuse.
- /// See to parse Json back into embed.
+ /// Gets a Json formatted from an .
///
+ ///
+ /// See to parse Json back into embed.
+ ///
/// The embed to format as Json .
/// The formatting in which the Json will be returned.
/// A Json containing the data from the .