Skip to content

Commit a87db3a

Browse files
committed
Comments
Normalize spelling
1 parent 48ece96 commit a87db3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/org/apache/commons/codec/binary

src/main/java/org/apache/commons/codec/binary/Base16.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void decode(final byte[] data, int offset, final int length, final Context conte
159159
final int dataLen = Math.min(data.length - offset, length);
160160
final int availableChars = (context.ibitWorkArea != 0 ? 1 : 0) + dataLen;
161161

162-
// small optimisation to short-cut the rest of this method when it is fed byte-by-byte
162+
// small optimization to short-cut the rest of this method when it is fed byte-by-byte
163163
if (availableChars == 1 && availableChars == dataLen) {
164164
// store 1/2 byte for next invocation of decode, we offset by +1 as empty-value is 0
165165
context.ibitWorkArea = decodeOctet(data[offset]) + 1;

0 commit comments

Comments
 (0)