garyp 00/11/07 01:42:33
Modified: java/src/org/apache/xalan/lib Extensions.java
Log:
Fix javadoc.
Revision Changes Path
1.7 +5 -4 xml-xalan/java/src/org/apache/xalan/lib/Extensions.java
Index: Extensions.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/Extensions.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Extensions.java 2000/11/07 09:10:05 1.6
+++ Extensions.java 2000/11/07 09:42:28 1.7
@@ -97,10 +97,11 @@
* node-set, <code>nodeset</code> returns a node-set. If the argument
* is a string, number, or boolean, then <code>nodeset</code> returns
* a node-set consisting of a single root node with a single text node
- * child that is the result of calling the string() function on the
- * passed parameter. If the argument is anything else, then a node-set
- * consisting of a single text node is returned which is the value
- * obtained by calling <code>toString()</code> on the passed argument.
+ * child that is the result of calling the XPath string() function on the
+ * passed parameter. If the argument is anything else, then a node-set
+ * is returned consisting of a single root node with a single text node
+ * child that is the result of calling the java <code>toString()</code>
+ * method on the passed argument.
* Most of the
* actual work here is done in <code>MethodResolver</code> and
* <code>XRTreeFrag</code>.