This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push:
new 3a62c6dc Comment: Upper case acronym
3a62c6dc is described below
commit 3a62c6dcfaf61f73e7723016173b3a7f43fb7544
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Dec 10 09:29:33 2024 -0500
Comment: Upper case acronym
---
src/main/java/org/apache/commons/net/ftp/FTPClient.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/net/ftp/FTPClient.java
b/src/main/java/org/apache/commons/net/ftp/FTPClient.java
index f6705ff2..2a0d6ba0 100644
--- a/src/main/java/org/apache/commons/net/ftp/FTPClient.java
+++ b/src/main/java/org/apache/commons/net/ftp/FTPClient.java
@@ -920,7 +920,7 @@ public class FTPClient extends FTP implements Configurable {
}
final InputStream input;
if (fileType == ASCII_FILE_TYPE) {
- // We buffer ascii transfers because the buffering has to
+ // We buffer ASCII transfers because the buffering has to
// be interposed between FromNetASCIIOutputSream and the underlying
// socket input stream. We don't buffer binary transfers
// because we don't want to impose a buffering policy on the
@@ -989,7 +989,7 @@ public class FTPClient extends FTP implements Configurable {
}
final OutputStream output;
if (fileType == ASCII_FILE_TYPE) {
- // We buffer ascii transfers because the buffering has to
+ // We buffer ASCII transfers because the buffering has to
// be interposed between ToNetASCIIOutputSream and the underlying
// socket output stream. We don't buffer binary transfers
// because we don't want to impose a buffering policy on the