Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 88DF917614 for ; Thu, 4 Jun 2015 13:29:29 +0000 (UTC) Received: (qmail 76395 invoked by uid 500); 4 Jun 2015 13:29:29 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 76331 invoked by uid 500); 4 Jun 2015 13:29:29 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 76318 invoked by uid 99); 4 Jun 2015 13:29:29 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Jun 2015 13:29:29 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id CC477AC026E for ; Thu, 4 Jun 2015 13:29:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1683545 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32.java Date: Thu, 04 Jun 2015 13:29:28 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150604132928.CC477AC026E@hades.apache.org> Author: sebb Date: Thu Jun 4 13:29:28 2015 New Revision: 1683545 URL: http://svn.apache.org/r1683545 Log: Fix up references Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32.java Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32.java?rev=1683545&r1=1683544&r2=1683545&view=diff ============================================================================== --- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32.java (original) +++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32.java Thu Jun 4 13:29:28 2015 @@ -85,8 +85,8 @@ public class Base32 extends BaseNCodec { }; /** - * This array is a lookup table that translates Unicode characters drawn from the "Base32 |Hex Alphabet" (as - * specified in Table 3 of RFC 4648) into their 5-bit positive integer equivalents. Characters that are not in the + * This array is a lookup table that translates Unicode characters drawn from the "Base32 Hex Alphabet" (as + * specified in Table 4 of RFC 4648) into their 5-bit positive integer equivalents. Characters that are not in the * Base32 Hex alphabet but fall within the bounds of the array are translated to -1. */ private static final byte[] HEX_DECODE_TABLE = { @@ -101,7 +101,7 @@ public class Base32 extends BaseNCodec { /** * This array is a lookup table that translates 5-bit positive integer index values into their - * "Base32 Hex Alphabet" equivalents as specified in Table 3 of RFC 4648. + * "Base32 Hex Alphabet" equivalents as specified in Table 4 of RFC 4648. */ private static final byte[] HEX_ENCODE_TABLE = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',