You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/05/18 13:26:43 UTC

[commons-codec] 02/06: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit 6333e5048aa77fd6472d857717e3be71576ebc20
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon May 18 09:12:45 2020 -0400

    Javadoc.
---
 src/main/java/org/apache/commons/codec/net/RFC1522Codec.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/org/apache/commons/codec/net/RFC1522Codec.java b/src/main/java/org/apache/commons/codec/net/RFC1522Codec.java
index f1e892a..1d326b0 100644
--- a/src/main/java/org/apache/commons/codec/net/RFC1522Codec.java
+++ b/src/main/java/org/apache/commons/codec/net/RFC1522Codec.java
@@ -30,8 +30,10 @@ import org.apache.commons.codec.binary.StringUtils;
  * <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522</a> describes techniques to allow the
  * encoding of non-ASCII text in various portions of a RFC 822 [2] message header, in a manner which
  * is unlikely to confuse existing message handling software.
+ * </p>
  * <p>
  * This class is immutable and thread-safe.
+ * </p>
  *
  * @see <a href="http://www.ietf.org/rfc/rfc1522.txt">MIME (Multipurpose Internet Mail Extensions) Part Two:
  *          Message Header Extensions for Non-ASCII Text</a>