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
commit 778385efddb1d96c05d6cfd7a3f6b6e934afd1b4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 17 12:34:24 2020 -0500 Fix spelling errors. --- src/main/java/org/apache/commons/net/ftp/FTPReply.java | 6 +++--- src/main/java/org/apache/commons/net/nntp/NNTPReply.java | 4 ++-- src/main/java/org/apache/commons/net/smtp/SMTPReply.java | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/net/ftp/FTPReply.java b/src/main/java/org/apache/commons/net/ftp/FTPReply.java index 890233c..30db15e 100644 --- a/src/main/java/org/apache/commons/net/ftp/FTPReply.java +++ b/src/main/java/org/apache/commons/net/ftp/FTPReply.java @@ -112,7 +112,7 @@ public final class FTPReply * server. * * @param reply The reply code to test. - * @return True if a reply code is a postive preliminary response, false + * @return True if a reply code is a positive preliminary response, false * if not. */ public static boolean isPositivePreliminary(final int reply) @@ -127,7 +127,7 @@ public final class FTPReply * successful completion of a command. * * @param reply The reply code to test. - * @return True if a reply code is a postive completion response, false + * @return True if a reply code is a positive completion response, false * if not. */ public static boolean isPositiveCompletion(final int reply) @@ -145,7 +145,7 @@ public final class FTPReply * ready for the PASS command. * * @param reply The reply code to test. - * @return True if a reply code is a postive intermediate response, false + * @return True if a reply code is a positive intermediate response, false * if not. */ public static boolean isPositiveIntermediate(final int reply) diff --git a/src/main/java/org/apache/commons/net/nntp/NNTPReply.java b/src/main/java/org/apache/commons/net/nntp/NNTPReply.java index 010d6b3..a62b950 100644 --- a/src/main/java/org/apache/commons/net/nntp/NNTPReply.java +++ b/src/main/java/org/apache/commons/net/nntp/NNTPReply.java @@ -94,7 +94,7 @@ public final class NNTPReply * successful completion of a command. * <p> * @param reply The reply code to test. - * @return True if a reply code is a postive completion response, false + * @return True if a reply code is a positive completion response, false * if not. */ public static boolean isPositiveCompletion(final int reply) @@ -112,7 +112,7 @@ public final class NNTPReply * server is ready to receive the article to be posted. * <p> * @param reply The reply code to test. - * @return True if a reply code is a postive intermediate response, false + * @return True if a reply code is a positive intermediate response, false * if not. */ public static boolean isPositiveIntermediate(final int reply) diff --git a/src/main/java/org/apache/commons/net/smtp/SMTPReply.java b/src/main/java/org/apache/commons/net/smtp/SMTPReply.java index b03703f..ea363f8 100644 --- a/src/main/java/org/apache/commons/net/smtp/SMTPReply.java +++ b/src/main/java/org/apache/commons/net/smtp/SMTPReply.java @@ -65,7 +65,7 @@ public final class SMTPReply * type of reply. </em> * <p> * @param reply The reply code to test. - * @return True if a reply code is a postive preliminary response, false + * @return True if a reply code is a positive preliminary response, false * if not. */ public static boolean isPositivePreliminary(final int reply) @@ -80,7 +80,7 @@ public final class SMTPReply * successful completion of a command. * <p> * @param reply The reply code to test. - * @return True if a reply code is a postive completion response, false + * @return True if a reply code is a positive completion response, false * if not. */ public static boolean isPositiveCompletion(final int reply) @@ -98,7 +98,7 @@ public final class SMTPReply * ready to receive the message data. * <p> * @param reply The reply code to test. - * @return True if a reply code is a postive intermediate response, false + * @return True if a reply code is a positive intermediate response, false * if not. */ public static boolean isPositiveIntermediate(final int reply)