Skip to content

Commit

Permalink
Javadoc: Upper case acronym
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 10, 2024
1 parent 6fe6880 commit 5010892
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
* 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>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -88,7 +88,7 @@ public static int decode(final byte[] data, final OutputStream out) throws IOExc
/**
* 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.
*/
Expand Down

0 comments on commit 5010892

Please sign in to comment.