You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/02/22 11:51:27 UTC

svn commit: r1073292 - /commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTP.java

Author: sebb
Date: Tue Feb 22 10:51:27 2011
New Revision: 1073292

URL: http://svn.apache.org/viewvc?rev=1073292&view=rev
Log:
Javadoc fixes

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

Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTP.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTP.java?rev=1073292&r1=1073291&r2=1073292&view=diff
==============================================================================
--- commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTP.java (original)
+++ commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTP.java Tue Feb 22 10:51:27 2011
@@ -229,8 +229,8 @@ public class FTP extends SocketClient
     protected boolean strictMultilineParsing = false;
 
     /**
-     * Wraps SocketClient._input_ to facilitate the writing of text
-     * to the FTP control connection.  Do not access the control
+     * Wraps SocketClient._input_ to facilitate the reading of text
+     * from the FTP control connection.  Do not access the control
      * connection via SocketClient._input_.  This member starts
      * with a null value, is initialized in {@link #_connectAction_},
      * and set to null in {@link #disconnect}.
@@ -238,8 +238,8 @@ public class FTP extends SocketClient
     protected BufferedReader _controlInput_;
 
     /**
-     * Wraps SocketClient._output_ to facilitate the reading of text
-     * from the FTP control connection.  Do not access the control
+     * Wraps SocketClient._output_ to facilitate the writing of text
+     * to the FTP control connection.  Do not access the control
      * connection via SocketClient._output_.  This member starts
      * with a null value, is initialized in {@link #_connectAction_},
      * and set to null in {@link #disconnect}.