This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch release in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/release by this push: new 1c49b7d Javadoc. 1c49b7d is described below commit 1c49b7d41d4156c0c888b8a4f0a1cb96c25f0633 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Feb 8 12:58:49 2021 -0500 Javadoc. --- src/main/java/org/apache/commons/net/ftp/FTPClient.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 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 0782445..8917c4c 100644 --- a/src/main/java/org/apache/commons/net/ftp/FTPClient.java +++ b/src/main/java/org/apache/commons/net/ftp/FTPClient.java @@ -1634,7 +1634,7 @@ implements Configurable } /** - * Query the server for supported features. The server may reply with a list of server-supported extensions. + * Queries the server for supported features. The server may reply with a list of server-supported extensions. * For example, a typical client-server interaction might be (from RFC 2389): * <pre> C> feat @@ -1655,7 +1655,7 @@ implements Configurable } /** - * Query the server for a supported feature, and returns the its value (if any). + * Queries the server for a supported feature, and returns the its value (if any). * Caches the parsed response to avoid resending the command repeatedly. * @param feature the feature to check * @@ -1675,7 +1675,7 @@ implements Configurable } /** - * Query the server for a supported feature, and returns its values (if any). + * Queries the server for a supported feature, and returns its values (if any). * Caches the parsed response to avoid resending the command repeatedly. * @param feature the feature to check * @@ -2106,7 +2106,7 @@ implements Configurable } /** - * Query the server for a supported feature. + * Queries the server for a supported feature. * Caches the parsed response to avoid resending the command repeatedly. * * @param feature the name of the feature; it is converted to upper case. @@ -2125,7 +2125,7 @@ implements Configurable } /** - * Query the server for a supported feature with particular value, + * Queries the server for a supported feature with particular value, * for example "AUTH SSL" or "AUTH TLS". * Caches the parsed response to avoid resending the command repeatedly. *