You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2018/01/22 10:04:44 UTC

httpcomponents-client git commit: Fix typo in Javadoc for createSystem()

Repository: httpcomponents-client
Updated Branches:
  refs/heads/4.6.x 0b1662c88 -> a5a846635


Fix typo in Javadoc for createSystem()

Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/commit/a5a84663
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/tree/a5a84663
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-client/diff/a5a84663

Branch: refs/heads/4.6.x
Commit: a5a84663595d769be98bf0dc65de5bd833ad02c7
Parents: 0b1662c
Author: Chris <sn...@users.noreply.github.com>
Authored: Sat Jan 20 14:53:04 2018 -0600
Committer: GitHub <no...@github.com>
Committed: Sat Jan 20 14:53:04 2018 -0600

----------------------------------------------------------------------
 .../src/main/java/org/apache/http/impl/client/HttpClients.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-client/blob/a5a84663/httpclient/src/main/java/org/apache/http/impl/client/HttpClients.java
----------------------------------------------------------------------
diff --git a/httpclient/src/main/java/org/apache/http/impl/client/HttpClients.java b/httpclient/src/main/java/org/apache/http/impl/client/HttpClients.java
index c43b460..5e10aa0 100644
--- a/httpclient/src/main/java/org/apache/http/impl/client/HttpClients.java
+++ b/httpclient/src/main/java/org/apache/http/impl/client/HttpClients.java
@@ -58,7 +58,7 @@ public class HttpClients {
 
     /**
      * Creates {@link CloseableHttpClient} instance with default
-     * configuration based on ssytem properties.
+     * configuration based on system properties.
      */
     public static CloseableHttpClient createSystem() {
         return HttpClientBuilder.create().useSystemProperties().build();