From 4580b4f73300ea5e0f7d36d121fbb8ffa70c3c48 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Thu, 9 Dec 2010 12:02:43 +0000 Subject: [PATCH] Typo: credenticals => credentials git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1043920 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/http/auth/AuthScope.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/httpclient/src/main/java/org/apache/http/auth/AuthScope.java b/httpclient/src/main/java/org/apache/http/auth/AuthScope.java index 3c8a313bc..f14627cff 100644 --- a/httpclient/src/main/java/org/apache/http/auth/AuthScope.java +++ b/httpclient/src/main/java/org/apache/http/auth/AuthScope.java @@ -88,16 +88,16 @@ public class AuthScope { * authentication scheme. * * @param host the host the credentials apply to. May be set - * to null if credenticals are applicable to + * to null if credentials are applicable to * any host. * @param port the port the credentials apply to. May be set - * to negative value if credenticals are applicable to + * to negative value if credentials are applicable to * any port. * @param realm the realm the credentials apply to. May be set - * to null if credenticals are applicable to + * to null if credentials are applicable to * any realm. * @param scheme the authentication scheme the credentials apply to. - * May be set to null if credenticals are applicable to + * May be set to null if credentials are applicable to * any authentication scheme. */ public AuthScope(final String host, int port, @@ -114,13 +114,13 @@ public class AuthScope { * authentication scheme. * * @param host the host the credentials apply to. May be set - * to null if credenticals are applicable to + * to null if credentials are applicable to * any host. * @param port the port the credentials apply to. May be set - * to negative value if credenticals are applicable to + * to negative value if credentials are applicable to * any port. * @param realm the realm the credentials apply to. May be set - * to null if credenticals are applicable to + * to null if credentials are applicable to * any realm. */ public AuthScope(final String host, int port, final String realm) { @@ -132,10 +132,10 @@ public class AuthScope { * authentication scheme. * * @param host the host the credentials apply to. May be set - * to null if credenticals are applicable to + * to null if credentials are applicable to * any host. * @param port the port the credentials apply to. May be set - * to negative value if credenticals are applicable to + * to negative value if credentials are applicable to * any port. */ public AuthScope(final String host, int port) {