This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
commit a8f56b472ccfd3c38a56229ce680c5325a9a3d3f Author: aherbert <aherb...@apache.org> AuthorDate: Mon Jun 29 13:48:18 2020 +0100 Fix javadoc typo for CodecPolicy.LENIENT enum value. --- src/main/java/org/apache/commons/codec/CodecPolicy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/codec/CodecPolicy.java b/src/main/java/org/apache/commons/codec/CodecPolicy.java index 9cf5e12..994cba7 100644 --- a/src/main/java/org/apache/commons/codec/CodecPolicy.java +++ b/src/main/java/org/apache/commons/codec/CodecPolicy.java @@ -30,7 +30,7 @@ public enum CodecPolicy { STRICT, /** - * The strict policy. Data that causes a codec to fail should not throw an exception. + * The lenient policy. Data that causes a codec to fail should not throw an exception. */ LENIENT }