diff --git a/xml/System.Diagnostics.CodeAnalysis/NotNullAttribute.xml b/xml/System.Diagnostics.CodeAnalysis/NotNullAttribute.xml
index 97571c388e5..2d5f8f0f746 100644
--- a/xml/System.Diagnostics.CodeAnalysis/NotNullAttribute.xml
+++ b/xml/System.Diagnostics.CodeAnalysis/NotNullAttribute.xml
@@ -24,7 +24,7 @@
- Specifies that an output is not even if the corresponding type allows it.
+ Specifies that an output is not even if the corresponding type allows it. Specifies that an input argument was not when the call returns.
To be added.
diff --git a/xml/System.Diagnostics.Tracing/EventCounter.xml b/xml/System.Diagnostics.Tracing/EventCounter.xml
index ca5c4bf0c16..a29388b9c0a 100644
--- a/xml/System.Diagnostics.Tracing/EventCounter.xml
+++ b/xml/System.Diagnostics.Tracing/EventCounter.xml
@@ -40,7 +40,7 @@
## Remarks
-For an example of how to use the class, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
+For an example of how to use the class, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
]]>
@@ -180,7 +180,7 @@ After being disposed, this counter will stop reporting values. If an method, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
+ For an example of how to use the method, see [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md).
]]>
@@ -224,7 +224,7 @@ After being disposed, this counter will stop reporting values. If an method, see the [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md) topic.
+ For an example of how to use the method, see the [Introduction Tutorial: How to measure performance for very frequent events using EventCounters](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md) topic.
]]>
diff --git a/xml/System.Diagnostics/Activity.xml b/xml/System.Diagnostics/Activity.xml
index a5d3fa81767..f8489333468 100644
--- a/xml/System.Diagnostics/Activity.xml
+++ b/xml/System.Diagnostics/Activity.xml
@@ -377,7 +377,7 @@ Normally if the is defined, its form
## Remarks
-An ID has a hierarchical structure: `root-id.id1_id2.id3_`. The ID is generated when is called by appending a suffix to the `Activity.Parent.Id` or the . An has no ID until it starts. For more information, see [Id Format](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
+An ID has a hierarchical structure: `root-id.id1_id2.id3_`. The ID is generated when is called by appending a suffix to the `Activity.Parent.Id` or the . An has no ID until it starts. For more information, see [Id Format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
]]>
@@ -492,7 +492,7 @@ An operation name is the *coarsest* name that is useful for grouping/filtering.
If the parent for this comes from outside the process, the does not have a parent but *may* have a parent ID (which was deserialized from the parent).
-This property value can be `null` if this is a root (that is, it has no ). For more information, see [ID format](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
+This property value can be `null` if this is a root (that is, it has no ). For more information, see [ID format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
]]>
@@ -576,7 +576,7 @@ If the
## Remarks
-The root ID is a substring from the or the ) between '|' (or the beginning) and the first `.`. Filtering by root ID allows you to find all activities involved in operation processing. For more information, see [ID Format](https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
+The root ID is a substring from the or the ) between '|' (or the beginning) and the first `.`. Filtering by root ID allows you to find all activities involved in operation processing. For more information, see [ID Format](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/ActivityUserGuide.md#id-format).
]]>
diff --git a/xml/System.Diagnostics/DiagnosticListener.xml b/xml/System.Diagnostics/DiagnosticListener.xml
index 0603fc252fc..4ae23494b11 100644
--- a/xml/System.Diagnostics/DiagnosticListener.xml
+++ b/xml/System.Diagnostics/DiagnosticListener.xml
@@ -35,7 +35,7 @@
`DiagnosticListener` is a NotificationSource, which means the returned result can be used to log notifications, but it also has a method so notifications can be forwarded arbitrarily. Thus, its job is to forward things from the producer to all the listeners (multi-casting). Generally, you should not be making your own but use the default, so that notifications are as public as possible.
-For more information on the and classes, see [DiagnosticSource User's Guide](https://github.com/dotnet/corefx/blob/d3942d4671919edb0cca6ddc1840190f524a809d/src/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).
+For more information on the and classes, see [DiagnosticSource User's Guide](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.DiagnosticSource/src/DiagnosticSourceUsersGuide.md).
]]>
diff --git a/xml/System.Diagnostics/Process.xml b/xml/System.Diagnostics/Process.xml
index 8bd744c988a..3db41397e01 100644
--- a/xml/System.Diagnostics/Process.xml
+++ b/xml/System.Diagnostics/Process.xml
@@ -105,9 +105,9 @@
The following example uses the class itself and a static method to start a process.
- [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp#1)]
- [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs#1)]
- [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb#1)]
+ [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp)]
+ [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs)]
+ [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb)]
The following F# example defines a `runProc` function that starts a process, captures all output and error information, and records the number of milliseconds that the process has run. The `runProc` function has three parameters: the name of application to launch, the arguments to supply to the application, and the starting directory.
@@ -4708,9 +4708,9 @@ There is a similar issue when you read all text from both the standard output an
## Examples
The following example runs the ipconfig.exe command and redirects its standard output to the example's console window.
- [!code-cpp[Process_StandardOutput#2](~/samples/snippets/cpp/VS_Snippets_CLR/Process_StandardOutput/CPP/process_standardoutput.cpp#2)]
- [!code-csharp[Process_StandardOutput#2](~/samples/snippets/csharp/VS_Snippets_CLR/Process_StandardOutput/CS/process_standardoutput.cs#2)]
- [!code-vb[Process_StandardOutput#2](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process_StandardOutput/VB/process_standardoutput.vb#2)]
+ [!code-cpp[Process_StandardOutput#2](~/samples/snippets/cpp/VS_Snippets_CLR/Process_StandardOutput/CPP/process_standardoutput.cpp)]
+ [!code-csharp[Process_StandardOutput#2](~/samples/snippets/csharp/VS_Snippets_CLR/Process_StandardOutput/CS/process_standardoutput.cs)]
+ [!code-vb[Process_StandardOutput#2](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process_StandardOutput/VB/process_standardoutput.vb)]
]]>
@@ -4897,9 +4897,9 @@ The member
For additional examples of other uses of this method, refer to the individual properties of the class.
- [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp#1)]
- [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs#1)]
- [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb#1)]
+ [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp)]
+ [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs)]
+ [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb)]
]]>
@@ -5002,9 +5002,9 @@ The member
## Examples
The following example first spawns an instance of Internet Explorer and displays the contents of the Favorites folder in the browser. It then starts some other instances of Internet Explorer and displays some specific pages or sites. Finally it starts Internet Explorer with the window being minimized while navigating to a specific site.
- [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp#1)]
- [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs#1)]
- [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb#1)]
+ [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp)]
+ [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs)]
+ [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb)]
]]>
@@ -5090,9 +5090,9 @@ The file specified in the could not be found.
diff --git a/xml/System.Diagnostics/ProcessStartInfo.xml b/xml/System.Diagnostics/ProcessStartInfo.xml
index b3ca09d69a8..af14127817d 100644
--- a/xml/System.Diagnostics/ProcessStartInfo.xml
+++ b/xml/System.Diagnostics/ProcessStartInfo.xml
@@ -59,9 +59,9 @@
## Examples
The following code example demonstrates how to use the class to start Internet Explorer, providing the destination URLs as arguments.
- [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp#1)]
- [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs#1)]
- [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb#1)]
+ [!code-cpp[Process.Start_static#1](~/samples/snippets/cpp/VS_Snippets_CLR/Process.Start_static/CPP/processstartstatic.cpp)]
+ [!code-csharp[Process.Start_static#1](~/samples/snippets/csharp/VS_Snippets_CLR/Process.Start_static/CS/processstartstatic.cs)]
+ [!code-vb[Process.Start_static#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/Process.Start_static/VB/processstartstatic.vb)]
]]>
@@ -360,13 +360,13 @@ If you use this property to set command-line arguments,
@@ -1771,9 +1771,9 @@ When is `false`, the
diff --git a/xml/System.IO.Compression/GZipStream.xml b/xml/System.IO.Compression/GZipStream.xml
index 337cc28ab7d..3bf4c5d16a8 100644
--- a/xml/System.IO.Compression/GZipStream.xml
+++ b/xml/System.IO.Compression/GZipStream.xml
@@ -980,16 +980,17 @@ Calling `DisposeAsync` allows the resources used by the
- The current implementation of this method has no functionality.
+ Flushes the internal buffers.
-
+ and the underlying stream still has some input left to write.
+
+ ]]>
- The stream is closed.
+ The underlying stream is closed.
diff --git a/xml/System.Reflection.Metadata.Ecma335/MetadataBuilder.xml b/xml/System.Reflection.Metadata.Ecma335/MetadataBuilder.xml
index f347489973c..29a83d18c04 100644
--- a/xml/System.Reflection.Metadata.Ecma335/MetadataBuilder.xml
+++ b/xml/System.Reflection.Metadata.Ecma335/MetadataBuilder.xml
@@ -360,11 +360,11 @@ Entries may be added in any order. The table is automatically sorted when serial
## Remarks
-For more information about `name`, see .
+For more information about `name`, see .
-For more information about common values for `hashAlgorithm`, see .
+For more information about common values for `hashAlgorithm`, see .
-For more information about common values for `language`, see .
+For more information about common values for `language`, see .
]]>
@@ -755,7 +755,7 @@ Constraints must be added in the same order as the corresponding generic paramet
## Remarks
-For more information about `imports`, see .
+For more information about `imports`, see .
]]>
@@ -835,7 +835,7 @@ If a type implements multiple interfaces, the corresponding entries must be adde
## Remarks
-For more information about `signature`, see: [LocalConstantSig Blob](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstantsig-blob) on GitHub.
+For more information about `signature`, see: [LocalConstantSig Blob](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstantsig-blob) on GitHub.
]]>
@@ -1062,7 +1062,7 @@ Entries may be added in any order. The table is automatically sorted when serial
## Remarks
-For more information about `sequencePoints`, see: [Sequence Points Blob](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#sequence-points-blob) on GitHub.
+For more information about `sequencePoints`, see: [Sequence Points Blob](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#sequence-points-blob) on GitHub.
]]>
@@ -1876,7 +1876,7 @@ Entires must be added in the same order as the corresponding type definitions.
## Remarks
-For more information about document name blobs, see: https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#DocumentNameBlob
+For more information about document name blobs, see: https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#DocumentNameBlob
]]>
diff --git a/xml/System.Reflection.Metadata/Document.xml b/xml/System.Reflection.Metadata/Document.xml
index 9ab17a163f5..fc51e88e08d 100644
--- a/xml/System.Reflection.Metadata/Document.xml
+++ b/xml/System.Reflection.Metadata/Document.xml
@@ -30,7 +30,7 @@
## Remarks
-For more information, see [Portable PDB v1.0: Format Specification](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30).
+For more information, see [Portable PDB v1.0: Format Specification](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#document-table-0x30).
]]>
diff --git a/xml/System.Reflection.Metadata/ImportScope.xml b/xml/System.Reflection.Metadata/ImportScope.xml
index f84f54f1a08..079d6483e08 100644
--- a/xml/System.Reflection.Metadata/ImportScope.xml
+++ b/xml/System.Reflection.Metadata/ImportScope.xml
@@ -30,7 +30,7 @@
## Remarks
-See [ImportScope Table" 0x35](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#importscope-table-0x35) for more information.
+See [ImportScope Table" 0x35](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#importscope-table-0x35) for more information.
]]>
diff --git a/xml/System.Reflection.Metadata/LocalConstant.xml b/xml/System.Reflection.Metadata/LocalConstant.xml
index 1e8b288141a..f14f7697b8d 100644
--- a/xml/System.Reflection.Metadata/LocalConstant.xml
+++ b/xml/System.Reflection.Metadata/LocalConstant.xml
@@ -30,7 +30,7 @@
## Remarks
-See [LocalConstant Table: 0x34](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstant-table-0x34).
+See [LocalConstant Table: 0x34](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localconstant-table-0x34).
]]>
diff --git a/xml/System.Reflection.Metadata/LocalScope.xml b/xml/System.Reflection.Metadata/LocalScope.xml
index 96fa22cc09c..ef583a3b3f9 100644
--- a/xml/System.Reflection.Metadata/LocalScope.xml
+++ b/xml/System.Reflection.Metadata/LocalScope.xml
@@ -30,7 +30,7 @@
## Remarks
-See [LocalScope Table: 0x32](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localscope-table-0x32).
+See [LocalScope Table: 0x32](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localscope-table-0x32).
]]>
diff --git a/xml/System.Reflection.Metadata/LocalVariable.xml b/xml/System.Reflection.Metadata/LocalVariable.xml
index 1983cfe0e5e..beb81494d98 100644
--- a/xml/System.Reflection.Metadata/LocalVariable.xml
+++ b/xml/System.Reflection.Metadata/LocalVariable.xml
@@ -30,7 +30,7 @@
## Remarks
-See [LocalVariable Table: 0x33](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localvariable-table-0x33) for more information.
+See [LocalVariable Table: 0x33](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#localvariable-table-0x33) for more information.
]]>
diff --git a/xml/System.Reflection.Metadata/MethodDebugInformation.xml b/xml/System.Reflection.Metadata/MethodDebugInformation.xml
index f3a1a364518..fcec227d5e3 100644
--- a/xml/System.Reflection.Metadata/MethodDebugInformation.xml
+++ b/xml/System.Reflection.Metadata/MethodDebugInformation.xml
@@ -30,7 +30,7 @@
## Remarks
-See [MethodDebugInformation Table: 0x31](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#methoddebuginformation-table-0x31).
+See [MethodDebugInformation Table: 0x31](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PortablePdb-Metadata.md#methoddebuginformation-table-0x31).
]]>
diff --git a/xml/System.Reflection.PortableExecutable/DebugDirectoryEntryType.xml b/xml/System.Reflection.PortableExecutable/DebugDirectoryEntryType.xml
index 4358c77a174..c0a086f1e99 100644
--- a/xml/System.Reflection.PortableExecutable/DebugDirectoryEntryType.xml
+++ b/xml/System.Reflection.PortableExecutable/DebugDirectoryEntryType.xml
@@ -28,10 +28,10 @@ See the following for the specifications related to individual enumeration membe
|Member|Specification|
|---|---|
-|`CodeView`|[CodeView Debug Directory Entry (type 2)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#codeview-debug-directory-entry-type-2)|
-|`EmbeddedPortablePdb`|[Embedded Portale PDB Debu Directory Entry (type 17)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#embedded-portable-pdb-debug-directory-entry-type-17)|
-|`PdbChecksum`|[PDB Checksum Debug Directory Entry (type 19)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19)|
-|`Reproducible`|See [Deterministic Debug Directory Entry (type 16)](https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#deterministic-debug-directory-entry-type-16)|
+|`CodeView`|[CodeView Debug Directory Entry (type 2)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#codeview-debug-directory-entry-type-2)|
+|`EmbeddedPortablePdb`|[Embedded Portale PDB Debu Directory Entry (type 17)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#embedded-portable-pdb-debug-directory-entry-type-17)|
+|`PdbChecksum`|[PDB Checksum Debug Directory Entry (type 19)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19)|
+|`Reproducible`|See [Deterministic Debug Directory Entry (type 16)](https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#deterministic-debug-directory-entry-type-16)|
### DebugDirectoryEntryType.Reproducible
diff --git a/xml/System.Reflection.PortableExecutable/PdbChecksumDebugDirectoryData.xml b/xml/System.Reflection.PortableExecutable/PdbChecksumDebugDirectoryData.xml
index 724851f5c9c..b1988be0d98 100644
--- a/xml/System.Reflection.PortableExecutable/PdbChecksumDebugDirectoryData.xml
+++ b/xml/System.Reflection.PortableExecutable/PdbChecksumDebugDirectoryData.xml
@@ -27,7 +27,7 @@
## Remarks
-For more information, see: https://github.com/dotnet/corefx/blob/master/src/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19
+For more information, see: https://github.com/dotnet/runtime/blob/master/src/libraries/System.Reflection.Metadata/specs/PE-COFF.md#pdb-checksum-debug-directory-entry-type-19
]]>
diff --git a/xml/System.Text.Encodings.Web/HtmlEncoder.xml b/xml/System.Text.Encodings.Web/HtmlEncoder.xml
index b6b456b8c9e..1dca0934a00 100644
--- a/xml/System.Text.Encodings.Web/HtmlEncoder.xml
+++ b/xml/System.Text.Encodings.Web/HtmlEncoder.xml
@@ -24,7 +24,7 @@
diff --git a/xml/System.Text.Encodings.Web/JavaScriptEncoder.xml b/xml/System.Text.Encodings.Web/JavaScriptEncoder.xml
index a47f2d2869e..364d8ad6248 100644
--- a/xml/System.Text.Encodings.Web/JavaScriptEncoder.xml
+++ b/xml/System.Text.Encodings.Web/JavaScriptEncoder.xml
@@ -24,7 +24,7 @@
diff --git a/xml/System.Text.Encodings.Web/TextEncoder.xml b/xml/System.Text.Encodings.Web/TextEncoder.xml
index e1c9cd8ea68..bf72a5cba69 100644
--- a/xml/System.Text.Encodings.Web/TextEncoder.xml
+++ b/xml/System.Text.Encodings.Web/TextEncoder.xml
@@ -26,7 +26,7 @@
## Remarks
TextEncoder subclasses can be used to do HTML encoding, URI encoding, and JavaScript encoding. Instances of such subclasses can be accessed using the , , and properties.
- The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/corefx/tree/master/src/System.Text.Encodings.Web/tests) folder on GitHub.
+ The source code for this type is available in the [System.Text.Encodings.Web project](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web) on GitHub. Unit tests that can also serve as code examples are found in the [System.Text.Encodings.Web/tests](https://github.com/dotnet/runtime/tree/master/src/libraries/System.Text.Encodings.Web/tests) folder on GitHub.
]]>
diff --git a/xml/System.Text.Encodings.Web/TextEncoderSettings.xml b/xml/System.Text.Encodings.Web/TextEncoderSettings.xml
index 4a19c54b1c9..d3e43ec7033 100644
--- a/xml/System.Text.Encodings.Web/TextEncoderSettings.xml
+++ b/xml/System.Text.Encodings.Web/TextEncoderSettings.xml
@@ -24,7 +24,7 @@
diff --git a/xml/System.Text.Encodings.Web/UrlEncoder.xml b/xml/System.Text.Encodings.Web/UrlEncoder.xml
index d80c6d1845c..1ce05839618 100644
--- a/xml/System.Text.Encodings.Web/UrlEncoder.xml
+++ b/xml/System.Text.Encodings.Web/UrlEncoder.xml
@@ -24,7 +24,7 @@
diff --git a/xml/System.Text.Json/JsonSerializer.xml b/xml/System.Text.Json/JsonSerializer.xml
index ec9113b9a85..4f25761ec0a 100644
--- a/xml/System.Text.Json/JsonSerializer.xml
+++ b/xml/System.Text.Json/JsonSerializer.xml
@@ -517,6 +517,8 @@ For more information, see [How to serialize and deserialize JSON](~/docs/standar
]]>
+
+ is .
@@ -600,6 +602,8 @@ For more information, see [How to serialize and deserialize JSON](~/docs/standar
]]>
+
+ is .