Skip to content

Commit 38357df

Browse files
committed
Fix up references
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1683545 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8e687df commit 38357df

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ public class Base32 extends BaseNCodec {
8585
};
8686

8787
/**
88-
* This array is a lookup table that translates Unicode characters drawn from the "Base32 |Hex Alphabet" (as
89-
* specified in Table 3 of RFC 4648) into their 5-bit positive integer equivalents. Characters that are not in the
88+
* This array is a lookup table that translates Unicode characters drawn from the "Base32 Hex Alphabet" (as
89+
* specified in Table 4 of RFC 4648) into their 5-bit positive integer equivalents. Characters that are not in the
9090
* Base32 Hex alphabet but fall within the bounds of the array are translated to -1.
9191
*/
9292
private static final byte[] HEX_DECODE_TABLE = {
@@ -101,7 +101,7 @@ public class Base32 extends BaseNCodec {
101101

102102
/**
103103
* This array is a lookup table that translates 5-bit positive integer index values into their
104-
* "Base32 Hex Alphabet" equivalents as specified in Table 3 of RFC 4648.
104+
* "Base32 Hex Alphabet" equivalents as specified in Table 4 of RFC 4648.
105105
*/
106106
private static final byte[] HEX_ENCODE_TABLE = {
107107
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',

0 commit comments

Comments
 (0)