From 39aed9d1bc74c1e2424b66b510b23c50b040a6d4 Mon Sep 17 00:00:00 2001 From: Armano den Boef Date: Tue, 3 May 2022 13:34:44 +0200 Subject: [PATCH] Modify comments --- .../Extensions/StringExtensions.cs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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 .