You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by df...@apache.org on 2011/04/15 21:31:47 UTC

svn commit: r1092792 - /commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java

Author: dfs
Date: Fri Apr 15 19:31:47 2011
New Revision: 1092792

URL: http://svn.apache.org/viewvc?rev=1092792&view=rev
Log:
Fixed a longstanding documentation typo.

Modified:
    commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java

Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java?rev=1092792&r1=1092791&r2=1092792&view=diff
==============================================================================
--- commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java (original)
+++ commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java Fri Apr 15 19:31:47 2011
@@ -45,7 +45,7 @@ import javax.net.SocketFactory;
  * requests browser security capabilities before creating a socket.
  * All classes derived from SocketClient should use the
  * {@link #_socketFactory_  _socketFactory_ } member variable to
- * create Socket and ServerSocket instances rather than instanting
+ * create Socket and ServerSocket instances rather than instantiating
  * them by directly invoking a constructor.  By honoring this contract
  * you guarantee that a user will always be able to provide his own
  * Socket implementations by substituting his own SocketFactory.