Bug 545332 - Fix Javadoc errors in JDT UI bundles.

- paragraph tag (<p>) cannot surround lists

Change-Id: I377b6ddf02aa9c4ae8f70c9cc7e1293939c182d5
diff --git a/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/SharedASTProviderCore.java b/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/SharedASTProviderCore.java
index 3f77880..18911c8 100644
--- a/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/SharedASTProviderCore.java
+++ b/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/SharedASTProviderCore.java
@@ -30,7 +30,7 @@
  * <p>For performance reasons, not more than one AST should be kept in memory at a time. Therefore, clients must
  * not keep any references to the shared AST or its nodes or bindings.
  * </p>
- * <p>Clients can make the following assumptions about the AST:
+ * <p>Clients can make the following assumptions about the AST:</p>
  * <ul>
  *    <li>the AST has a {@link ITypeRoot} as source: {@link CompilationUnit#getTypeRoot()} is not null.</li>
  *    <li>the {@link AST#apiLevel() AST API level} is {@link AST#JLS12 API level 12} or higher</li>
@@ -39,6 +39,7 @@
  *           recovery are enabled
  *    </li>
  * </ul>
+ * <p>
  * It is possible that in the future a higher API level is used, or that future options will be enabled.
  * </p>
  * <p>