diff --git a/cynic-book/src/manual-http-requests.md b/cynic-book/src/manual-http-requests.md index d73b4b96..0985f43a 100644 --- a/cynic-book/src/manual-http-requests.md +++ b/cynic-book/src/manual-http-requests.md @@ -26,7 +26,7 @@ let response = reqwest::blocking::Client::new() .send() .unwrap(); -let all_films_result = response.json::>.unwrap(); +let all_films_result = response.json::>().unwrap(); ``` Now you can do whatever you want with the result.