Skip to content

Commit 69e1615

Browse files
committed
Fix typos and use a better parameter name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1075403 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1ed0459 commit 69e1615

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/java/org/apache/commons/codec/StringDecoder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ public interface StringDecoder extends Decoder {
2828
/**
2929
* Decodes a String and returns a String.
3030
*
31-
* @param pString a String to encode
31+
* @param source the String to decode
3232
*
3333
* @return the encoded String
3434
*
3535
* @throws DecoderException thrown if there is
36-
* an error conidition during the Encoding process.
36+
* an error condition during the Encoding process.
3737
*/
38-
String decode(String pString) throws DecoderException;
38+
String decode(String source) throws DecoderException;
3939
}
4040

0 commit comments

Comments
 (0)