diff --git a/docs/versioned_docs/version-v111/intro.md b/docs/versioned_docs/version-v111/intro.md index 6d8d61664..8144a61cd 100644 --- a/docs/versioned_docs/version-v111/intro.md +++ b/docs/versioned_docs/version-v111/intro.md @@ -84,7 +84,7 @@ There is no need to set the `Content-Type` or add the `DataFormat` parameter to RestSharp will also handle both XML and JSON responses and perform all necessary deserialization tasks, depending on the server response type. Therefore, you only need to add the `Accept` header if you want to deserialize the response manually. -For example, only you'd only need these lines to make a request with JSON body: +For example, you'd only need these lines to make a request with JSON body: ```csharp var request = new RestRequest("address/update").AddJsonBody(updatedAddress);