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 Oct 17, 2023
1 parent 10227e6 commit 1affd0b
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 @@ -50,8 +50,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 @@ -24,7 +24,7 @@
final class QuotedPrintableDecoder {

/**
* The shift value required to create the upper nibble from the first of 2 byte values converted from ascii hex.
* The shift value required to create the upper nibble 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 @@ -87,7 +87,7 @@ public static int decode(final byte[] data, final OutputStream out) throws IOExc
/**
* Converts a hexadecimal digit to the binary value it represents.
*
* @param b the ascii hexadecimal byte to convert (0-0, A-F, a-f)
* @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.
*/
Expand Down

0 comments on commit 1affd0b

Please sign in to comment.