From 90c151b4217915d51fb922c9ff4d50a6f5da9a5b Mon Sep 17 00:00:00 2001 From: Harald Gliebe Date: Mon, 28 May 2018 09:59:31 +0200 Subject: [PATCH] Confusing typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15f053b0b8..4d45644996 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ This part can be of type: #### Blocking on the Future -`execute` methods return a `java.util.concurrent.Future`. You can simply both the calling thread to get the response. +`execute` methods return a `java.util.concurrent.Future`. You can simply block the calling thread to get the response. ```java Future whenResponse = asyncHttpClient.prepareGet("http://www.example.com/").execute();