This commit is contained in:
Matt Fellenz 2022-05-31 13:06:28 -07:00 committed by GitHub
parent 752b035c1a
commit 04967bd9b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ 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
[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