Add missing tag to XML comments (dotnet/corefx#41162)
authorFrank Buckley <frank@frankbuckley.com>
Wed, 18 Sep 2019 00:59:41 +0000 (01:59 +0100)
committerStephen Toub <stoub@microsoft.com>
Wed, 18 Sep 2019 00:59:41 +0000 (20:59 -0400)
Commit migrated from https://github.com/dotnet/corefx/commit/4ca1feeeb484e8a7089ce8a9d377703ad5b8a53e

src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonConverterOfT.cs

index 7c6e49c..df8577a 100644 (file)
@@ -31,7 +31,9 @@ namespace System.Text.Json.Serialization
         /// <summary>
         /// Read and convert the JSON to T.
         /// </summary>
+        /// <remarks>
         /// A converter may throw any Exception, but should throw <cref>JsonException</cref> when the JSON is invalid.
+        /// </remarks>
         /// <param name="reader">The <see cref="Utf8JsonReader"/> to read from.</param>
         /// <param name="typeToConvert">The <see cref="Type"/> being converted.</param>
         /// <param name="options">The <see cref="JsonSerializerOptions"/> being used.</param>