Skip to content

Commit e3f152c

Browse files
committed
Fix unbound sample
1 parent 758dcf2 commit e3f152c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Future<Response> whenResponse = asyncHttpClient.prepareGet("http://www.example.c
7373

7474
// unbound
7575
Request request = get("http://www.example.com/");
76-
Future<Response> whenResponse = asyncHttpClient.executeRequest("http://www.example.com/").execute();
76+
Future<Response> whenResponse = asyncHttpClient.execute(request).execute();
7777
```
7878

7979
#### Setting Request Body

0 commit comments

Comments
 (0)