Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 78860 invoked from network); 28 Feb 2011 16:17:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 28 Feb 2011 16:17:04 -0000 Received: (qmail 1856 invoked by uid 500); 28 Feb 2011 16:17:04 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 1658 invoked by uid 500); 28 Feb 2011 16:17:02 -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 1651 invoked by uid 99); 28 Feb 2011 16:17:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Feb 2011 16:17:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Feb 2011 16:17:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A10462388A2C; Mon, 28 Feb 2011 16:16:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1075403 - /commons/proper/codec/trunk/src/java/org/apache/commons/codec/StringDecoder.java Date: Mon, 28 Feb 2011 16:16:39 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110228161639.A10462388A2C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Mon Feb 28 16:16:39 2011 New Revision: 1075403 URL: http://svn.apache.org/viewvc?rev=1075403&view=rev Log: Fix typos and use a better parameter name. Modified: commons/proper/codec/trunk/src/java/org/apache/commons/codec/StringDecoder.java Modified: commons/proper/codec/trunk/src/java/org/apache/commons/codec/StringDecoder.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/StringDecoder.java?rev=1075403&r1=1075402&r2=1075403&view=diff ============================================================================== --- commons/proper/codec/trunk/src/java/org/apache/commons/codec/StringDecoder.java (original) +++ commons/proper/codec/trunk/src/java/org/apache/commons/codec/StringDecoder.java Mon Feb 28 16:16:39 2011 @@ -28,13 +28,13 @@ public interface StringDecoder extends D /** * Decodes a String and returns a String. * - * @param pString a String to encode + * @param source the String to decode * * @return the encoded String * * @throws DecoderException thrown if there is - * an error conidition during the Encoding process. + * an error condition during the Encoding process. */ - String decode(String pString) throws DecoderException; + String decode(String source) throws DecoderException; }