From 16293ee334aee8f90dc8236cfb9b71befc1937ce Mon Sep 17 00:00:00 2001 From: thisismana Date: Fri, 15 Jan 2016 13:00:53 +0100 Subject: [PATCH] fixed a code error in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4332d2f0d..603b99dfa2 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ Finally, you can also configure the AsyncHttpClient via its AsyncHttpClientConfi ```java AsyncHttpClientConfig cf = new AsyncHttpClientConfig.Builder() - S.setProxyServer(new ProxyServer("127.0.0.1", 38080)).build(); + .setProxyServer(new ProxyServer("127.0.0.1", 38080)).build(); AsyncHttpClient c = new AsyncHttpClient(cf); ```