From 358cdf9f00552a946362290e07709afa1ae26412 Mon Sep 17 00:00:00 2001 From: bjornen77 <58444816+bjornen77@users.noreply.github.com> Date: Mon, 20 Dec 2021 13:08:12 +0100 Subject: [PATCH] Improve XML documentation (#62994) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Corrected return value type in XML documentation. Fix #62993 Co-authored-by: Björn Sjögren --- .../Json/Serialization/JsonSerializer.Write.Element.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonSerializer.Write.Element.cs b/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonSerializer.Write.Element.cs index 07cea19..f28b67b 100644 --- a/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonSerializer.Write.Element.cs +++ b/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonSerializer.Write.Element.cs @@ -11,10 +11,10 @@ namespace System.Text.Json public static partial class JsonSerializer { /// - /// Converts the provided value into a . + /// Converts the provided value into a . /// /// The type of the value to serialize. - /// A representation of the JSON value. + /// A representation of the JSON value. /// The value to convert. /// Options to control the conversion behavior. /// @@ -30,9 +30,9 @@ namespace System.Text.Json } /// - /// Converts the provided value into a . + /// Converts the provided value into a . /// - /// A representation of the value. + /// A representation of the value. /// The value to convert. /// The type of the to convert. /// Options to control the conversion behavior. @@ -55,10 +55,10 @@ namespace System.Text.Json } /// - /// Converts the provided value into a . + /// Converts the provided value into a . /// /// The type of the value to serialize. - /// A representation of the value. + /// A representation of the value. /// The value to convert. /// Metadata about the type to convert. /// @@ -79,9 +79,9 @@ namespace System.Text.Json } /// - /// Converts the provided value into a . + /// Converts the provided value into a . /// - /// A representation of the value. + /// A representation of the value. /// The value to convert. /// The type of the to convert. /// A metadata provider for serializable types. -- 2.7.4