Update SerializerProgrammingModel.md (dotnet/corefx#37478)
authorRandolph West <rabryst@users.noreply.github.com>
Mon, 6 May 2019 20:54:03 +0000 (14:54 -0600)
committerViktor Hofer <viktor.hofer@microsoft.com>
Mon, 6 May 2019 20:54:03 +0000 (22:54 +0200)
"Supprt" typo.

Commit migrated from https://github.com/dotnet/corefx/commit/6a53eef1e3cdacada60ec9a70d6a48a23bd0e062

src/libraries/System.Text.Json/docs/SerializerProgrammingModel.md

index 59633a1..73d4d7e 100644 (file)
@@ -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