From 09464d8cad7ddc4320691ef6d134677f20822f34 Mon Sep 17 00:00:00 2001 From: Randolph West Date: Mon, 6 May 2019 14:54:03 -0600 Subject: [PATCH] Update SerializerProgrammingModel.md (dotnet/corefx#37478) "Supprt" typo. Commit migrated from https://github.com/dotnet/corefx/commit/6a53eef1e3cdacada60ec9a70d6a48a23bd0e062 --- src/libraries/System.Text.Json/docs/SerializerProgrammingModel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Text.Json/docs/SerializerProgrammingModel.md b/src/libraries/System.Text.Json/docs/SerializerProgrammingModel.md index 59633a1..73d4d7e 100644 --- a/src/libraries/System.Text.Json/docs/SerializerProgrammingModel.md +++ b/src/libraries/System.Text.Json/docs/SerializerProgrammingModel.md @@ -168,7 +168,7 @@ Dates are not part of JSON, so an internal converter is supplied. Dates are typi If the internal converter is not sufficient, such as when the format has a custom format or is not ISO 8601 compatible, then a developer will be able to add a new value converter. -## Enum Supprt +## Enum Support By default, Enums are treated as longs in the JSON. This is most efficient. There will be future support to be based on strings; likely through an attribute to change the default for a given property and an option on `JsonSerializerOptions` to change the default globally. ## ICollection and Array Converter feature -- 2.7.4