diff --git a/docs/fundamentals/networking/http/httpclient.md b/docs/fundamentals/networking/http/httpclient.md index 50563d60ad4ce..67f901eaa5a1d 100644 --- a/docs/fundamentals/networking/http/httpclient.md +++ b/docs/fundamentals/networking/http/httpclient.md @@ -170,7 +170,7 @@ The code completes the following tasks: #### Create the HTTP POST request as JSON -To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the extension method that's part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. +To automatically serialize `POST` request arguments and deserialize responses into strongly typed C# objects, use the and the extension methods, respectively, that are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PostAsJson.cs" id="postasjson"::: @@ -194,7 +194,8 @@ The code completes the following tasks: #### Create the HTTP PUT request as JSON -To automatically serialize `PUT` request arguments and deserialize responses into strongly typed C# objects, use the extension method that's part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. +To automatically serialize `PUT` request arguments and deserialize responses into strongly typed C# objects, use the and the + extension methods, respectively, that are part of the [System.Net.Http.Json](https://www.nuget.org/packages/System.Net.Http.Json) NuGet package. :::code source="../snippets/httpclient/Program.PutAsJson.cs" id="putasjson":::