@@ -100,14 +100,14 @@ public class FTP extends SocketClient
100
100
public static final int DEFAULT_PORT = 21 ;
101
101
102
102
/***
103
- * A constant used to indicate the file(s) being transfered should
103
+ * A constant used to indicate the file(s) being transferred should
104
104
* be treated as ASCII. This is the default file type. All constants
105
105
* ending in <code>FILE_TYPE</code> are used to indicate file types.
106
106
***/
107
107
public static final int ASCII_FILE_TYPE = 0 ;
108
108
109
109
/***
110
- * A constant used to indicate the file(s) being transfered should
110
+ * A constant used to indicate the file(s) being transferred should
111
111
* be treated as EBCDIC. Note however that there are several different
112
112
* EBCDIC formats. All constants ending in <code>FILE_TYPE</code>
113
113
* are used to indicate file types.
@@ -116,15 +116,15 @@ public class FTP extends SocketClient
116
116
117
117
118
118
/***
119
- * A constant used to indicate the file(s) being transfered should
119
+ * A constant used to indicate the file(s) being transferred should
120
120
* be treated as a binary image, i.e., no translations should be
121
121
* performed. All constants ending in <code>FILE_TYPE</code> are used to
122
122
* indicate file types.
123
123
***/
124
124
public static final int BINARY_FILE_TYPE = 2 ;
125
125
126
126
/***
127
- * A constant used to indicate the file(s) being transfered should
127
+ * A constant used to indicate the file(s) being transferred should
128
128
* be treated as a local type. All constants ending in
129
129
* <code>FILE_TYPE</code> are used to indicate file types.
130
130
***/
@@ -178,22 +178,22 @@ public class FTP extends SocketClient
178
178
public static final int PAGE_STRUCTURE = 9 ;
179
179
180
180
/***
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
182
182
* of bytes. This is the default transfer mode. All constants ending
183
183
* in <code>TRANSFER_MODE</code> are used to indicate file transfer
184
184
* modes.
185
185
***/
186
186
public static final int STREAM_TRANSFER_MODE = 10 ;
187
187
188
188
/***
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
190
190
* of blocks. All constants ending in <code>TRANSFER_MODE</code> are used
191
191
* to indicate file transfer modes.
192
192
***/
193
193
public static final int BLOCK_TRANSFER_MODE = 11 ;
194
194
195
195
/***
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
197
197
* compressed data. All constants ending in <code>TRANSFER_MODE</code>
198
198
* are used to indicate file transfer modes.
199
199
***/
0 commit comments