Skip to content

Commit 1231a68

Browse files
authored
fix typo (#2097)
1 parent cc44c36 commit 1231a68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var request = new RestRequest("statuses/home_timeline.json");
5959
var timeline = await client.GetAsync<HomeTimeline>(request, cancellationToken);
6060
```
6161

62-
Both snippets about use the `GetAsync` extension, which is a wrapper about `ExecuteGetAsync`, which, in turn, is a wrapper around `ExecuteAsync`.
62+
Both snippets above use the `GetAsync` extension, which is a wrapper about `ExecuteGetAsync`, which, in turn, is a wrapper around `ExecuteAsync`.
6363
All `ExecuteAsync` overloads and return the `RestResponse` or `RestResponse<T>`.
6464

6565
The most important difference is that async methods that are named after HTTP methods return the `Task<T>` instead of `Task<RestResponse<T>>`. Because it means that you won't get an error response if the request fails, those methods

0 commit comments

Comments
 (0)