Skip to content

Commit cafa8ce

Browse files
authored
doc: fixed return value of RestClient.PostAsync() (#1723)
1 parent 6091d72 commit cafa8ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/v107/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ var response = await client.PostAsync<MyResponse>(request, cancellationToken);
7070

7171
All the synchronous methods are gone. If you absolutely must call without using `async` and `await`, use `GetAwaiter().GetResult()` blocking call.
7272

73-
The `IRestResponse` interface is deprecated. You get an instance of `RestRequest` or `RestRequest<T>` in return.
73+
The `IRestResponse` interface is deprecated. You get an instance of `RestResponse` or `RestResponse<T>` in return.
7474

7575
You can also use a simplified API for making POST and PUT requests:
7676

0 commit comments

Comments
 (0)