2222 *
2323 * <p>
2424 * The class can be parameterized in the following manner with various constructors:
25+ * </p>
2526 * <ul>
2627 * <li>Whether to use the "base32hex" variant instead of the default "base32"</li>
2728 * <li>Line length: Default 76. Line length that aren't multiples of 8 will still essentially end up being multiples of
2829 * 8 in the encoded data.
2930 * <li>Line separator: Default is CRLF ("\r\n")</li>
3031 * </ul>
31- * </p>
3232 * <p>
3333 * This class operates directly on byte streams, and not character streams.
3434 * </p>
@@ -144,7 +144,7 @@ public class Base32 extends BaseNCodec {
144144 private final byte [] encodeTable ;
145145
146146 /**
147- * Line separator for encoding. Not used when decoding. Only used if lineLength > 0.
147+ * Line separator for encoding. Not used when decoding. Only used if lineLength > 0.
148148 */
149149 private final byte [] lineSeparator ;
150150
@@ -178,7 +178,7 @@ public Base32(final boolean useHex) {
178178 *
179179 * @param lineLength
180180 * Each line of encoded data will be at most of the given length (rounded down to nearest multiple of
181- * 8). If lineLength < = 0, then the output will not be divided into lines (chunks). Ignored when
181+ * 8). If lineLength < = 0, then the output will not be divided into lines (chunks). Ignored when
182182 * decoding.
183183 */
184184 public Base32 (final int lineLength ) {
@@ -196,7 +196,7 @@ public Base32(final int lineLength) {
196196 *
197197 * @param lineLength
198198 * Each line of encoded data will be at most of the given length (rounded down to nearest multiple of
199- * 8). If lineLength < = 0, then the output will not be divided into lines (chunks). Ignored when
199+ * 8). If lineLength < = 0, then the output will not be divided into lines (chunks). Ignored when
200200 * decoding.
201201 * @param lineSeparator
202202 * Each line of encoded data will end with this sequence of bytes.
@@ -218,15 +218,15 @@ public Base32(final int lineLength, final byte[] lineSeparator) {
218218 *
219219 * @param lineLength
220220 * Each line of encoded data will be at most of the given length (rounded down to nearest multiple of
221- * 8). If lineLength < = 0, then the output will not be divided into lines (chunks). Ignored when
221+ * 8). If lineLength < = 0, then the output will not be divided into lines (chunks). Ignored when
222222 * decoding.
223223 * @param lineSeparator
224224 * Each line of encoded data will end with this sequence of bytes.
225225 * @param useHex
226226 * if {@code true}, then use Base32 Hex alphabet, otherwise use Base32 alphabet
227227 * @throws IllegalArgumentException
228228 * The provided lineSeparator included some Base32 characters. That's not going to work! Or the
229- * lineLength > 0 and lineSeparator is null.
229+ * lineLength > 0 and lineSeparator is null.
230230 */
231231 public Base32 (final int lineLength , final byte [] lineSeparator , final boolean useHex ) {
232232 super (BYTES_PER_UNENCODED_BLOCK , BYTES_PER_ENCODED_BLOCK ,
0 commit comments