Skip to content

Commit 9d7a34f

Browse files
committed
Corrected NuGet link, and mentioned the package link again at top
1 parent 175a38d commit 9d7a34f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

aspnetcore/web-api/jsonpatch.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ uid: web-api/jsonpatch
1414

1515
This article explains how to handle JSON Patch requests in an ASP.NET Core web API.
1616

17+
JSON Patch support in ASP.NET Core web API is based on `System.Text.Json` serialization, and requires the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch.SystemTextJson) NuGet package.
18+
1719
**[JSON Patch](https://jsonpatch.com/)**:
1820

1921
* Is a standard format for describing changes to apply to a JSON document.
@@ -46,7 +48,7 @@ These benchmarks highlight significant performance gains and reduced memory usag
4648
4749
## Enable JSON Patch support with `System.Text.Json`
4850

49-
To enable JSON Patch support with `System.Text.Json`, install the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/) NuGet package.
51+
To enable JSON Patch support with `System.Text.Json`, install the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch.SystemTextJson) NuGet package.
5052

5153
```dotnetcli
5254
dotnet add package Microsoft.AspNetCore.JsonPatch.SystemTextJson --prerelease

0 commit comments

Comments
 (0)