diff --git a/js/rhino/docs/api.html b/js/rhino/docs/api.html
index 0ab722cb44ef..3955137cab2c 100644
--- a/js/rhino/docs/api.html
+++ b/js/rhino/docs/api.html
@@ -18,53 +18,53 @@ These APIs provide methods for controlling the actions of JavaScript in
a host environment.
-
-Context - Represents
+Context - Represents
the runtime context of an executing script. Has methods to associate the
JavaScript evaluation engine with a Java thread, set attributes of the
engine, and compile and evaluate scripts.
-
-ContextFactory
+ContextFactory
- Allows embeddings to customize creation of Context instances and monitor entering and releasing of Contexts.
-
-Script - The result of
+Script - The result of
compiling a JavaScript script. Also encapsulates script execution.
-
-ErrorReporter -
+ErrorReporter -
This interface can be implemented to control the actions the JavaScript
engine takes when it encounters errors.
-
-SecurityController
+SecurityController
- Optional support routines that must be provided by embeddings implementing
security controls on scripts.
-
-ClassShutter
+ClassShutter
- Embeddings that wish to filter Java classes that are visible to scripts
through the LiveConnect, should implement this interface.
-
-Wrapper - Interface implemented
+Wrapper - Interface implemented
by objects wrapping other objects. Provides a method for recovering the
wrapped value.
-
-WrapFactory - Class
+WrapFactory - Class
embedders can extend in order to control the way Java objects are wrapped
for use by JavaScript.
-
-ClassCompiler - Class that provies API for compiling scripts into JVM class files.
+ClassCompiler - Class that provies API for compiling scripts into JVM class files.
-
-ScriptableOutputStream - This stream can be used to serialize JavaScript objects and functions.
+ScriptableOutputStream - This stream can be used to serialize JavaScript objects and functions.
-
-ScriptableInputStream - This stream can be used to deserialize JavaScript objects and functions.
+ScriptableInputStream - This stream can be used to deserialize JavaScript objects and functions.
@@ -77,29 +77,29 @@ to script existing Java classes, you should just use runtime.
-
-Scriptable - All JavaScript
+Scriptable - All JavaScript
objects must implement this interface. Provides methods to access properties
and attributes of those properties, as well as other services required
of JavaScript objects.
-
-Function - All JavaScript
+Function - All JavaScript
functions must implement this interface. Extends Scriptable, adding methods
to support invocation.
-
-ScriptableObject
+ScriptableObject
- A default implementation of Scriptable that may be extended. Implements
property and attribute storage and lookup and other default JavaScript
object behavior.
-
-FunctionObject
+FunctionObject
- An implementation of Function that allows Java methods and constructors
to be used as JavaScript function objects.
-
-ImporterTopLevel
+ImporterTopLevel
- Allows embeddings to use the JavaImporter constructor.
@@ -108,22 +108,22 @@ Exceptions
These exceptions are thrown by JavaScript.
-
-RhinoException
+RhinoException
- Common root for all exception explicitly thrown by Rhino engine.
-JavaScriptException
+JavaScriptException
- Thrown from within JavaScript by the JavaScript 'throw' statement. It wrapps the JavaScript value from 'throw' statement.
-
-EcmaError
+EcmaError
- Thrown by Rhino runtime when particular runtime operation a scripts tries to execute is not allowed. The exception is thrown, for example, when a script attempts to check properties of undefinedor null or refer to a name that can not be found in the current scope chain.
-
-WrappedException
+WrappedException
- Thrown by LiveConnect implementation from JavaScript when called Java method exits with an exception. It wraps the original Java exception.
-
-EvaluatorException
+EvaluatorException
- An exception thrown when an error is detected during the compilation or execution of
a script. The default error reporter will throw EvaluatorExceptions when
an error is encountered.