jdk/src/share/classes/javax/crypto/Cipher.java
changeset 21955 abc02575919c
parent 18771 9dadb0719cea
--- a/jdk/src/share/classes/javax/crypto/Cipher.java	Tue Dec 03 11:37:25 2013 -0800
+++ b/jdk/src/share/classes/javax/crypto/Cipher.java	Tue Dec 03 11:52:18 2013 -0800
@@ -62,17 +62,17 @@
  * algorithm (e.g., <i>DES</i>), and may be followed by a feedback mode and
  * padding scheme.
  *
- * <p> A transformation is of the form:<p>
+ * <p> A transformation is of the form:
  *
  * <ul>
  * <li>"<i>algorithm/mode/padding</i>" or
- * <p>
+ *
  * <li>"<i>algorithm</i>"
  * </ul>
  *
  * <P> (in the latter case,
  * provider-specific default values for the mode and padding scheme are used).
- * For example, the following is a valid transformation:<p>
+ * For example, the following is a valid transformation:
  *
  * <pre>
  *     Cipher c = Cipher.getInstance("<i>DES/CBC/PKCS5Padding</i>");