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-fileupload.git
The following commit(s) were added to refs/heads/master by this push: new 10227e65 Javadoc, no need to abbreviate in documentation 10227e65 is described below commit 10227e658496359ba1bbedf80ec3c45a5a1e9b6d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 17 08:28:17 2023 -0400 Javadoc, no need to abbreviate in documentation --- .../apache/commons/fileupload2/core/QuotedPrintableDecoder.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java index 263238be..11abfe95 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/QuotedPrintableDecoder.java @@ -85,11 +85,11 @@ final class QuotedPrintableDecoder { } /** - * Converts a hex digit to the binary value it represents. + * Converts a hexadecimal digit to the binary value it represents. * - * @param b the ascii hex byte to convert (0-0, A-F, a-f) - * @return the int value of the hex byte, 0-15 - * @throws IOException if the byte is not a valid hex digit. + * @param b the ascii hexadecimal byte to convert (0-0, A-F, a-f) + * @return the int value of the hexadecimal byte, 0-15 + * @throws IOException if the byte is not a valid hexadecimal digit. */ private static int hexToBinary(final byte b) throws IOException { // CHECKSTYLE IGNORE MagicNumber FOR NEXT 1 LINE