Skip to content

Commit e28f9f5

Browse files
authored
Fix typo in example in README (#1714)
1 parent fc59d4a commit e28f9f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pkgs/cupertino_http/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void main() async {
3939
httpClient = IOClient(HttpClient()..userAgent = 'Book Agent');
4040
}
4141
42-
final response = await client.get(Uri.https(
42+
final response = await httpClient.get(Uri.https(
4343
'www.googleapis.com',
4444
'/books/v1/volumes',
4545
{'q': 'HTTP', 'maxResults': '40', 'printType': 'books'}));

0 commit comments

Comments
 (0)