Skip to content

Commit 30bcd86

Browse files
committed
Fix typo in // comment.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1072757 13f79535-47bb-0310-9956-ffa450edef68
1 parent e6db010 commit 30bcd86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/codec/binary/Base32.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public Base32(int lineLength, byte[] lineSeparator, boolean useHex) {
243243
if (lineSeparator == null) {
244244
throw new IllegalArgumentException("lineLength "+lineLength+" > 0, but lineSeparator is null");
245245
}
246-
// Must be done after initialising the tables
246+
// Must be done after initializing the tables
247247
if (containsAlphabetOrPad(lineSeparator)) {
248248
String sep = StringUtils.newStringUtf8(lineSeparator);
249249
throw new IllegalArgumentException("lineSeparator must not contain Base32 characters: [" + sep + "]");

0 commit comments

Comments
 (0)