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) {