jdk/src/share/classes/java/lang/ArrayStoreException.java
changeset 21334 c60dfce46a77
parent 5506 202f599c92aa
child 23010 6dadb192ad81
--- a/jdk/src/share/classes/java/lang/ArrayStoreException.java	Tue Oct 22 15:11:47 2013 -0400
+++ b/jdk/src/share/classes/java/lang/ArrayStoreException.java	Tue Oct 22 17:02:08 2013 -0400
@@ -29,7 +29,7 @@
  * Thrown to indicate that an attempt has been made to store the
  * wrong type of object into an array of objects. For example, the
  * following code generates an <code>ArrayStoreException</code>:
- * <p><blockquote><pre>
+ * <blockquote><pre>
  *     Object x[] = new String[3];
  *     x[0] = new Integer(0);
  * </pre></blockquote>