From fd110e2f05b405a419f2401b2ec59ca8a89b610e Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Fri, 26 Feb 2021 15:43:41 +0300 Subject: [PATCH 1/2] Remove redundant link in system-text-json-immutability.md The following sentence: > For types that are immutable because all their property setters are non-public, see the following section about **non-public property accessors**. ...references and links to the section titled **Non-public property accessors** but that section is literally one line below the above sentence, so the link is not really required (clicking the link makes the browser scroll just a few pixels down). I have edited the sentence accordingly. --- docs/standard/serialization/system-text-json-immutability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/serialization/system-text-json-immutability.md b/docs/standard/serialization/system-text-json-immutability.md index 60058655261f3..5c3f962731135 100644 --- a/docs/standard/serialization/system-text-json-immutability.md +++ b/docs/standard/serialization/system-text-json-immutability.md @@ -41,7 +41,7 @@ Records in C# 9 are also supported, as shown in the following example: :::code language="csharp" source="snippets/system-text-json-how-to-5-0/csharp/Records.cs"::: -For types that are immutable because all their property setters are non-public, see the following section about [non-public property accessors](#non-public-property-accessors). +For types that are immutable because all their property setters are non-public, see the section below. ::: zone-end ::: zone pivot="dotnet-core-3-1" From 46a75ed694eda315f23d1c4727cb9c78b134fffe Mon Sep 17 00:00:00 2001 From: Eric Mutta Date: Fri, 26 Feb 2021 19:48:21 +0300 Subject: [PATCH 2/2] Update docs/standard/serialization/system-text-json-immutability.md Co-authored-by: Tom Dykstra --- docs/standard/serialization/system-text-json-immutability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/serialization/system-text-json-immutability.md b/docs/standard/serialization/system-text-json-immutability.md index 5c3f962731135..748feee6b179d 100644 --- a/docs/standard/serialization/system-text-json-immutability.md +++ b/docs/standard/serialization/system-text-json-immutability.md @@ -41,7 +41,7 @@ Records in C# 9 are also supported, as shown in the following example: :::code language="csharp" source="snippets/system-text-json-how-to-5-0/csharp/Records.cs"::: -For types that are immutable because all their property setters are non-public, see the section below. +For types that are immutable because all their property setters are non-public, see the following section. ::: zone-end ::: zone pivot="dotnet-core-3-1"