Skip to content

Commit

Permalink
Comment: Upper case acronym
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 10, 2024
1 parent e9257cc commit 3a62c6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/net/ftp/FTPClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ protected InputStream _retrieveFileStream(final String command, final String rem
}
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
Expand Down Expand Up @@ -989,7 +989,7 @@ protected OutputStream _storeFileStream(final String command, final String remot
}
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
Expand Down

0 comments on commit 3a62c6d

Please sign in to comment.