From fc3533469d5d1188c197d1e2a78fe2470e594eaa Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Tue, 11 Feb 2025 10:16:46 -0800 Subject: [PATCH] Fix typo in example in README --- pkgs/cupertino_http/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/cupertino_http/README.md b/pkgs/cupertino_http/README.md index 0e12a6ef08..ad3db9dd1b 100644 --- a/pkgs/cupertino_http/README.md +++ b/pkgs/cupertino_http/README.md @@ -39,7 +39,7 @@ void main() async { httpClient = IOClient(HttpClient()..userAgent = 'Book Agent'); } - final response = await client.get(Uri.https( + final response = await httpClient.get(Uri.https( 'www.googleapis.com', '/books/v1/volumes', {'q': 'HTTP', 'maxResults': '40', 'printType': 'books'}));