You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2010/12/09 13:02:44 UTC

svn commit: r1043920 - /httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/auth/AuthScope.java

Author: sebb
Date: Thu Dec  9 12:02:43 2010
New Revision: 1043920

URL: http://svn.apache.org/viewvc?rev=1043920&view=rev
Log:
Typo: credenticals => credentials

Modified:
    httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/auth/AuthScope.java

Modified: httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/auth/AuthScope.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/auth/AuthScope.java?rev=1043920&r1=1043919&r2=1043920&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/auth/AuthScope.java (original)
+++ httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/auth/AuthScope.java Thu Dec  9 12:02:43 2010
@@ -88,16 +88,16 @@ public class AuthScope {
      * <tt>authentication scheme</tt>.
      *
      * @param host the host the credentials apply to. May be set
-     *   to <tt>null</tt> if credenticals are applicable to
+     *   to <tt>null</tt> 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 <tt>null</tt> if credenticals are applicable to
+     *   to <tt>null</tt> if credentials are applicable to
      *   any realm.
      * @param scheme the authentication scheme the credentials apply to.
-     *   May be set to <tt>null</tt> if credenticals are applicable to
+     *   May be set to <tt>null</tt> 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 <tt>null</tt> if credenticals are applicable to
+     *   to <tt>null</tt> 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 <tt>null</tt> if credenticals are applicable to
+     *   to <tt>null</tt> 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 <tt>null</tt> if credenticals are applicable to
+     *   to <tt>null</tt> 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) {