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 5a1d9e94 Fix spelling 5a1d9e94 is described below commit 5a1d9e94992d8708f68384d16c2a41c5407b3843 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 25 13:15:56 2022 -0500 Fix spelling --- src/main/java/org/apache/commons/net/ftp/FTPFileEntryParser.java | 2 +- src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParser.java b/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParser.java index 29a46208..cefb4d3b 100644 --- a/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParser.java +++ b/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParser.java @@ -88,7 +88,7 @@ public interface FTPFileEntryParser { List<String> preParse(List<String> original); /** - * Reads the next entry using the supplied BufferedReader object up to whatever delemits one entry from the next. Implementors must define this for the + * Reads the next entry using the supplied BufferedReader object up to whatever delimits one entry from the next. Implementors must define this for the * particular ftp system being parsed. In many but not all cases, this can be defined simply by calling BufferedReader.readLine(). * * @param reader The BufferedReader object from which entries are to be read. diff --git a/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java b/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java index 7be9bd22..e7d5601d 100644 --- a/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java +++ b/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java @@ -194,7 +194,7 @@ public class VMSFTPEntryParser extends ConfigurableFTPFileEntryParserImpl { // DEPRECATED METHODS - for API compatibility only - DO NOT USE /** - * Reads the next entry using the supplied BufferedReader object up to whatever delemits one entry from the next. This parser cannot use the default + * Reads the next entry using the supplied BufferedReader object up to whatever delimits one entry from the next. This parser cannot use the default * implementation of simply calling BufferedReader.readLine(), because one entry may span multiple lines. * * @param reader The BufferedReader object from which entries are to be read.