diff --git a/mozilla/js/rhino/org/mozilla/javascript/FunctionObject.java b/mozilla/js/rhino/org/mozilla/javascript/FunctionObject.java index 4d7e32821bc..1537b01ff82 100644 --- a/mozilla/js/rhino/org/mozilla/javascript/FunctionObject.java +++ b/mozilla/js/rhino/org/mozilla/javascript/FunctionObject.java @@ -55,15 +55,15 @@ public class FunctionObject extends NativeFunction { * form. If the FunctionObject will be used as a constructor, * the member must have the following parameters *
- * (Context cx, Scriptable thisObj, Object[] args, - * Function funObj)- * and if it is a Method, be static and return an Object result.
- * - * Otherwise, if the FunctionObject will not be used to define a - * constructor, the member must be a static Method with parameters - *
* (Context cx, Object[] args, Function ctorObj,
* boolean inNewExpr)
+ * and if it is a Method, be static and return an Object result.+ * + * Otherwise, if the FunctionObject will not be used to define a + * constructor, the member must be a static Method with parameters + * (Context cx, Scriptable thisObj, Object[] args, + * Function funObj) + *
* and an Object result.
*
* When the function varargs form is called as part of a function call,
diff --git a/mozilla/js/rhino/src/org/mozilla/javascript/FunctionObject.java b/mozilla/js/rhino/src/org/mozilla/javascript/FunctionObject.java
index 4d7e32821bc..1537b01ff82 100644
--- a/mozilla/js/rhino/src/org/mozilla/javascript/FunctionObject.java
+++ b/mozilla/js/rhino/src/org/mozilla/javascript/FunctionObject.java
@@ -55,15 +55,15 @@ public class FunctionObject extends NativeFunction {
* form. If the FunctionObject will be used as a constructor,
* the member must have the following parameters
*
- * (Context cx, Scriptable thisObj, Object[] args,
- * Function funObj)
- * and if it is a Method, be static and return an Object result.
- *
- * Otherwise, if the FunctionObject will not be used to define a
- * constructor, the member must be a static Method with parameters
- *
* (Context cx, Object[] args, Function ctorObj,
* boolean inNewExpr)
+ * and if it is a Method, be static and return an Object result.
+ *
+ * Otherwise, if the FunctionObject will not be used to define a
+ * constructor, the member must be a static Method with parameters
+ * (Context cx, Scriptable thisObj, Object[] args,
+ * Function funObj)
+ *
* and an Object result.
*
* When the function varargs form is called as part of a function call,