8029478: Fix more doclint issues in javax.script
authordarcy
Tue, 03 Dec 2013 10:07:03 -0800
changeset 21953 3facfc87b92e
parent 21952 6fdca3d54613
child 21954 df1d668d6e23
8029478: Fix more doclint issues in javax.script Reviewed-by: chegar, mduigou
jdk/src/share/classes/javax/script/ScriptEngineFactory.java
--- a/jdk/src/share/classes/javax/script/ScriptEngineFactory.java	Tue Dec 03 17:29:19 2013 +0000
+++ b/jdk/src/share/classes/javax/script/ScriptEngineFactory.java	Tue Dec 03 10:07:03 2013 -0800
@@ -144,7 +144,7 @@
      * Returns a String which can be used to invoke a method of a  Java object using the syntax
      * of the supported scripting language.  For instance, an implementation for a Javascript
      * engine might be;
-     * <p>
+     *
      * <pre>{@code
      * public String getMethodCallSyntax(String obj,
      *                                   String m, String... args) {
@@ -180,7 +180,7 @@
      * Returns a String that can be used as a statement to display the specified String  using
      * the syntax of the supported scripting language.  For instance, the implementation for a Perl
      * engine might be;
-     * <p>
+     *
      * <pre><code>
      * public String getOutputStatement(String toDisplay) {
      *      return "print(" + toDisplay + ")";
@@ -198,7 +198,7 @@
     /**
      * Returns a valid scripting language executable program with given statements.
      * For instance an implementation for a PHP engine might be:
-     * <p>
+     *
      * <pre>{@code
      * public String getProgram(String... statements) {
      *      String retval = "<?\n";