From 14b79289b1e641501e3a4bf05029e279f314f5a0 Mon Sep 17 00:00:00 2001 From: Tyler Brinkley Date: Thu, 19 Sep 2024 08:50:21 -0500 Subject: [PATCH] Update JsonPolymorphicAttribute.cs Fix documentation spelling --- .../Json/Serialization/Attributes/JsonPolymorphicAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Attributes/JsonPolymorphicAttribute.cs b/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Attributes/JsonPolymorphicAttribute.cs index c92648d963d301..be63924a8ca71a 100644 --- a/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Attributes/JsonPolymorphicAttribute.cs +++ b/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Attributes/JsonPolymorphicAttribute.cs @@ -10,7 +10,7 @@ namespace System.Text.Json.Serialization public sealed class JsonPolymorphicAttribute : JsonAttribute { /// - /// Gets or sets a custom type discriminator property name for the polymorhic type. + /// Gets or sets a custom type discriminator property name for the polymorphic type. /// Uses the default '$type' property name if left unset. /// public string? TypeDiscriminatorPropertyName { get; set; }