Skip to content

Commit e821bbd

Browse files
committed
Typos reported in apache#4
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/net/trunk@1757723 13f79535-47bb-0310-9956-ffa450edef68
1 parent dfb7d35 commit e821bbd

File tree

1 file changed

+7
-7
lines changed
  • src/main/java/org/apache/commons/net/ftp

1 file changed

+7
-7
lines changed

src/main/java/org/apache/commons/net/ftp/FTP.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@ public class FTP extends SocketClient
100100
public static final int DEFAULT_PORT = 21;
101101

102102
/***
103-
* A constant used to indicate the file(s) being transfered should
103+
* A constant used to indicate the file(s) being transferred should
104104
* be treated as ASCII. This is the default file type. All constants
105105
* ending in <code>FILE_TYPE</code> are used to indicate file types.
106106
***/
107107
public static final int ASCII_FILE_TYPE = 0;
108108

109109
/***
110-
* A constant used to indicate the file(s) being transfered should
110+
* A constant used to indicate the file(s) being transferred should
111111
* be treated as EBCDIC. Note however that there are several different
112112
* EBCDIC formats. All constants ending in <code>FILE_TYPE</code>
113113
* are used to indicate file types.
@@ -116,15 +116,15 @@ public class FTP extends SocketClient
116116

117117

118118
/***
119-
* A constant used to indicate the file(s) being transfered should
119+
* A constant used to indicate the file(s) being transferred should
120120
* be treated as a binary image, i.e., no translations should be
121121
* performed. All constants ending in <code>FILE_TYPE</code> are used to
122122
* indicate file types.
123123
***/
124124
public static final int BINARY_FILE_TYPE = 2;
125125

126126
/***
127-
* A constant used to indicate the file(s) being transfered should
127+
* A constant used to indicate the file(s) being transferred should
128128
* be treated as a local type. All constants ending in
129129
* <code>FILE_TYPE</code> are used to indicate file types.
130130
***/
@@ -178,22 +178,22 @@ public class FTP extends SocketClient
178178
public static final int PAGE_STRUCTURE = 9;
179179

180180
/***
181-
* A constant used to indicate a file is to be transfered as a stream
181+
* A constant used to indicate a file is to be transferred as a stream
182182
* of bytes. This is the default transfer mode. All constants ending
183183
* in <code>TRANSFER_MODE</code> are used to indicate file transfer
184184
* modes.
185185
***/
186186
public static final int STREAM_TRANSFER_MODE = 10;
187187

188188
/***
189-
* A constant used to indicate a file is to be transfered as a series
189+
* A constant used to indicate a file is to be transferred as a series
190190
* of blocks. All constants ending in <code>TRANSFER_MODE</code> are used
191191
* to indicate file transfer modes.
192192
***/
193193
public static final int BLOCK_TRANSFER_MODE = 11;
194194

195195
/***
196-
* A constant used to indicate a file is to be transfered as FTP
196+
* A constant used to indicate a file is to be transferred as FTP
197197
* compressed data. All constants ending in <code>TRANSFER_MODE</code>
198198
* are used to indicate file transfer modes.
199199
***/

0 commit comments

Comments
 (0)