This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch 1.x
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/1.x by this push:
     new 50108928 Javadoc: Upper case acronym
50108928 is described below

commit 501089280bd58da7e594055c50f7bb04a349e085
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Dec 10 09:28:51 2024 -0500

    Javadoc: Upper case acronym
---
 src/main/java/org/apache/commons/fileupload/MultipartStream.java      | 4 ++--
 .../apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload/MultipartStream.java 
b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
index 64b77ca9..5ced338d 100644
--- a/src/main/java/org/apache/commons/fileupload/MultipartStream.java
+++ b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
@@ -47,8 +47,8 @@ import org.apache.commons.fileupload.util.Streams;
  *   body := header-part CRLF body-part<br>
  *   header-part := 1*header CRLF<br>
  *   header := header-name ":" header-value<br>
- *   header-name := &lt;printable ascii characters except ":"&gt;<br>
- *   header-value := &lt;any ascii characters except CR &amp; LF&gt;<br>
+ *   header-name := &lt;printable ASCII characters except ":"&gt;<br>
+ *   header-value := &lt;any ASCII characters except CR &amp; LF&gt;<br>
  *   body-data := &lt;arbitrary data&gt;<br>
  * </code>
  *
diff --git 
a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
 
b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
index 68381b48..e2c9ba35 100644
--- 
a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
+++ 
b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
@@ -26,7 +26,7 @@ final class QuotedPrintableDecoder {
 
     /**
      * The shift value required to create the upper nibble
-     * from the first of 2 byte values converted from ascii hex.
+     * from the first of 2 byte values converted from ASCII hex.
      */
     private static final int UPPER_NIBBLE_SHIFT = Byte.SIZE / 2;
 
@@ -88,7 +88,7 @@ final class QuotedPrintableDecoder {
     /**
      * Convert a hex digit to the binary value it represents.
      *
-     * @param b the ascii hex byte to convert (0-0, A-F, a-f)
+     * @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.
      */

Reply via email to