fixes rest-get reqwest typo

This commit is contained in:
80-am 2021-09-15 13:10:14 +02:00
parent 752b035c1a
commit 6a273c35c6

View file

@ -6,8 +6,8 @@ Queries GitHub [stargazers API v3](https://developer.github.com/v3/activity/star
with [`reqwest::get`] to get list of all users who have marked a GitHub project with a star.
[`reqwest::Response`] is deserialized with [`Response::json`] into `User` objects implementing [`serde::Deserialize`].
[tokio::main] is used to set up the async executor and the process waits for [`reqwet::get`] to complete before
processing the response into User instances.
[tokio::main] is used to set up the async executor and the process waits for [`reqwest::get`] to complete before
processing the response into User instances.
```rust,edition2018,no_run
use serde::Deserialize;